True or False questionsExam class: start true/false questions with “True False”Creating multiple choice...
Is divide-by-zero a security vulnerability?
Is the NES controller port identical to the port on a Wii remote?
How to roleplay my character's ethics according to the DM when I don't understand those ethics?
Is it possible to counterspell the revised Artificer?
For the Kanji 校 is the fifth stroke connected to the sixth stroke?
The need of reserving one's ability in job interviews
How to merge row in the first column in LaTeX
A better USB receptacle
1970s scifi/horror novel where protagonist is used by a crablike creature to feed its larvae, goes mad, and is defeated by retraumatising him
Citing contemporaneous (interlaced?) preprints
Any ideas to make an Electronic Voter Machine more secure?
What is the difference between a forward slip and a side slip?
How to get the first first element while continue streaming?
Would the melodic leap of the opening phrase of Mozart's K545 be considered dissonant?
Difference between 'stomach' and 'uterus'
apt: What's the difference between "apt install php" and "apt install php-defaults"?
Is there a limit on the maximum number of future jobs queued in an org?
Movie: Scientists travel to the future to avoid nuclear war, last surviving one is used as fuel by future humans
Why can't we make a perpetual motion machine by using a magnet to pull up a piece of metal, then letting it fall back down?
What are SHA-rounds?
Is there any relevance to Thor getting his hair cut other than comedic value?
How to mitigate "bandwagon attacking" from players?
What does each site of a vanilla 9.1 installation do?
What is better: yes / no radio, or simple checkbox?
True or False questions
Exam class: start true/false questions with “True False”Creating multiple choice questions with answers without exam classHow to hook to solution environment of exam class to put the answers in the end of documentPreparing true/false questions with exam classExam Class: don't print questionsAuto assign points/marks to Multiple Choice QuestionsTRUE FALSE QuestionsMultiple Choice Questions with AnswrsTrue/False questions in Moodle package (LaTex)selecting specific questions
I want to make an test/exam with only true or false questions and I want to make a page where the students could mark only T or F, without the questions in it. And I want it to show the answers when I need.
Any help?
exam
add a comment |
I want to make an test/exam with only true or false questions and I want to make a page where the students could mark only T or F, without the questions in it. And I want it to show the answers when I need.
Any help?
exam
Generally, putting answers on separate sheets is done for automatic grading machines. If you intend to reuse the question sheet, be warned that people often write on them anyway.
– John Kormylo
yesterday
add a comment |
I want to make an test/exam with only true or false questions and I want to make a page where the students could mark only T or F, without the questions in it. And I want it to show the answers when I need.
Any help?
exam
I want to make an test/exam with only true or false questions and I want to make a page where the students could mark only T or F, without the questions in it. And I want it to show the answers when I need.
Any help?
exam
exam
edited yesterday
Filipe Cavalcanti
asked yesterday
Filipe CavalcantiFilipe Cavalcanti
83
83
Generally, putting answers on separate sheets is done for automatic grading machines. If you intend to reuse the question sheet, be warned that people often write on them anyway.
– John Kormylo
yesterday
add a comment |
Generally, putting answers on separate sheets is done for automatic grading machines. If you intend to reuse the question sheet, be warned that people often write on them anyway.
– John Kormylo
yesterday
Generally, putting answers on separate sheets is done for automatic grading machines. If you intend to reuse the question sheet, be warned that people often write on them anyway.
– John Kormylo
yesterday
Generally, putting answers on separate sheets is done for automatic grading machines. If you intend to reuse the question sheet, be warned that people often write on them anyway.
– John Kormylo
yesterday
add a comment |
1 Answer
1
active
oldest
votes
A tricky way: You set a command status
storing the status (answer sheet or answer key) of the document.
If you want to hide the answer keys, set it to white
. Set it to black
otherwise.
You are in the answer key:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
%renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
You are in the answer sheet:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
One can define a new command based on item
to make this easier.
1
You could also usepdfcomment[opacity=status]{T/F}
(pdfcomment package) in case the paper isn't white..
– John Kormylo
yesterday
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477893%2ftrue-or-false-questions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
A tricky way: You set a command status
storing the status (answer sheet or answer key) of the document.
If you want to hide the answer keys, set it to white
. Set it to black
otherwise.
You are in the answer key:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
%renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
You are in the answer sheet:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
One can define a new command based on item
to make this easier.
1
You could also usepdfcomment[opacity=status]{T/F}
(pdfcomment package) in case the paper isn't white..
– John Kormylo
yesterday
add a comment |
A tricky way: You set a command status
storing the status (answer sheet or answer key) of the document.
If you want to hide the answer keys, set it to white
. Set it to black
otherwise.
You are in the answer key:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
%renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
You are in the answer sheet:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
One can define a new command based on item
to make this easier.
1
You could also usepdfcomment[opacity=status]{T/F}
(pdfcomment package) in case the paper isn't white..
– John Kormylo
yesterday
add a comment |
A tricky way: You set a command status
storing the status (answer sheet or answer key) of the document.
If you want to hide the answer keys, set it to white
. Set it to black
otherwise.
You are in the answer key:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
%renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
You are in the answer sheet:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
One can define a new command based on item
to make this easier.
A tricky way: You set a command status
storing the status (answer sheet or answer key) of the document.
If you want to hide the answer keys, set it to white
. Set it to black
otherwise.
You are in the answer key:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
%renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
You are in the answer sheet:
documentclass{article}
usepackage{color}
defstatus{black}
begin{document}
renewcommand{status}{white}
begin{enumerate}
item underline{quadtextcolor{status}{T}quad} Foo bar
item underline{quadtextcolor{status}{F}quad} Dummy text
item underline{quadtextcolor{status}{F}quad} Hello world
item underline{quadtextcolor{status}{T}quad} Loren lipsum
item underline{quadtextcolor{status}{T}quad} There is something in the sky.
end{enumerate}
end{document}
One can define a new command based on item
to make this easier.
answered yesterday
JouleVJouleV
4,91111139
4,91111139
1
You could also usepdfcomment[opacity=status]{T/F}
(pdfcomment package) in case the paper isn't white..
– John Kormylo
yesterday
add a comment |
1
You could also usepdfcomment[opacity=status]{T/F}
(pdfcomment package) in case the paper isn't white..
– John Kormylo
yesterday
1
1
You could also use
pdfcomment[opacity=status]{T/F}
(pdfcomment package) in case the paper isn't white..– John Kormylo
yesterday
You could also use
pdfcomment[opacity=status]{T/F}
(pdfcomment package) in case the paper isn't white..– John Kormylo
yesterday
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477893%2ftrue-or-false-questions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Generally, putting answers on separate sheets is done for automatic grading machines. If you intend to reuse the question sheet, be warned that people often write on them anyway.
– John Kormylo
yesterday