How do I get permission for exam materials?
up vote
2
down vote
favorite
MWE
documentclass{minimal}
usepackage{ulem}
book = 1
phone = 0
photocopy = 1
internet = 0
tablet = 1
begin{document}
Book, xout{phone}, photocopy, xout{internet}, tablet, ldots free or open.
end{document}
I would like to mention which materials students can use for the exam. If the material is 1, write the name of the material. I want it to write as xout if the material is 0. I've added a picture below.

conditionals exam ulem ifthenelse
add a comment |
up vote
2
down vote
favorite
MWE
documentclass{minimal}
usepackage{ulem}
book = 1
phone = 0
photocopy = 1
internet = 0
tablet = 1
begin{document}
Book, xout{phone}, photocopy, xout{internet}, tablet, ldots free or open.
end{document}
I would like to mention which materials students can use for the exam. If the material is 1, write the name of the material. I want it to write as xout if the material is 0. I've added a picture below.

conditionals exam ulem ifthenelse
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
MWE
documentclass{minimal}
usepackage{ulem}
book = 1
phone = 0
photocopy = 1
internet = 0
tablet = 1
begin{document}
Book, xout{phone}, photocopy, xout{internet}, tablet, ldots free or open.
end{document}
I would like to mention which materials students can use for the exam. If the material is 1, write the name of the material. I want it to write as xout if the material is 0. I've added a picture below.

conditionals exam ulem ifthenelse
MWE
documentclass{minimal}
usepackage{ulem}
book = 1
phone = 0
photocopy = 1
internet = 0
tablet = 1
begin{document}
Book, xout{phone}, photocopy, xout{internet}, tablet, ldots free or open.
end{document}
I would like to mention which materials students can use for the exam. If the material is 1, write the name of the material. I want it to write as xout if the material is 0. I've added a picture below.

conditionals exam ulem ifthenelse
conditionals exam ulem ifthenelse
asked 11 hours ago
Özgür
1,4171019
1,4171019
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
You could use something like this:
documentclass{article}
usepackage{ulem}
newcommand{book}{1}
newcommand{phone}{0}
newcommand{photocopy}{1}
newcommand{internet}{0}
newcommand{tablet}{1}
newcommand{allowed}[2]{%
ifnum#1=1
#2%
else%
xout{#2}%
fi%
}
begin{document}
allowed{book}{books}, allowed{phone}{phone}, allowed{photocopy}{photocopies}, allowed{internet}{internet}, allowed{tablet}{tablet}, ldots free or open.
end{document}

Personally I would not use such a notation for an exam but be on the safe site and explicitly write
allowed items: ....
forbidden items: ....
to avoid potential misunderstandings and legal problems.
Thank you for the information. I'll take it into consideration.
– Özgür
9 hours ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
You could use something like this:
documentclass{article}
usepackage{ulem}
newcommand{book}{1}
newcommand{phone}{0}
newcommand{photocopy}{1}
newcommand{internet}{0}
newcommand{tablet}{1}
newcommand{allowed}[2]{%
ifnum#1=1
#2%
else%
xout{#2}%
fi%
}
begin{document}
allowed{book}{books}, allowed{phone}{phone}, allowed{photocopy}{photocopies}, allowed{internet}{internet}, allowed{tablet}{tablet}, ldots free or open.
end{document}

Personally I would not use such a notation for an exam but be on the safe site and explicitly write
allowed items: ....
forbidden items: ....
to avoid potential misunderstandings and legal problems.
Thank you for the information. I'll take it into consideration.
– Özgür
9 hours ago
add a comment |
up vote
3
down vote
accepted
You could use something like this:
documentclass{article}
usepackage{ulem}
newcommand{book}{1}
newcommand{phone}{0}
newcommand{photocopy}{1}
newcommand{internet}{0}
newcommand{tablet}{1}
newcommand{allowed}[2]{%
ifnum#1=1
#2%
else%
xout{#2}%
fi%
}
begin{document}
allowed{book}{books}, allowed{phone}{phone}, allowed{photocopy}{photocopies}, allowed{internet}{internet}, allowed{tablet}{tablet}, ldots free or open.
end{document}

Personally I would not use such a notation for an exam but be on the safe site and explicitly write
allowed items: ....
forbidden items: ....
to avoid potential misunderstandings and legal problems.
Thank you for the information. I'll take it into consideration.
– Özgür
9 hours ago
add a comment |
up vote
3
down vote
accepted
up vote
3
down vote
accepted
You could use something like this:
documentclass{article}
usepackage{ulem}
newcommand{book}{1}
newcommand{phone}{0}
newcommand{photocopy}{1}
newcommand{internet}{0}
newcommand{tablet}{1}
newcommand{allowed}[2]{%
ifnum#1=1
#2%
else%
xout{#2}%
fi%
}
begin{document}
allowed{book}{books}, allowed{phone}{phone}, allowed{photocopy}{photocopies}, allowed{internet}{internet}, allowed{tablet}{tablet}, ldots free or open.
end{document}

Personally I would not use such a notation for an exam but be on the safe site and explicitly write
allowed items: ....
forbidden items: ....
to avoid potential misunderstandings and legal problems.
You could use something like this:
documentclass{article}
usepackage{ulem}
newcommand{book}{1}
newcommand{phone}{0}
newcommand{photocopy}{1}
newcommand{internet}{0}
newcommand{tablet}{1}
newcommand{allowed}[2]{%
ifnum#1=1
#2%
else%
xout{#2}%
fi%
}
begin{document}
allowed{book}{books}, allowed{phone}{phone}, allowed{photocopy}{photocopies}, allowed{internet}{internet}, allowed{tablet}{tablet}, ldots free or open.
end{document}

Personally I would not use such a notation for an exam but be on the safe site and explicitly write
allowed items: ....
forbidden items: ....
to avoid potential misunderstandings and legal problems.
answered 10 hours ago
samcarter
82.1k793262
82.1k793262
Thank you for the information. I'll take it into consideration.
– Özgür
9 hours ago
add a comment |
Thank you for the information. I'll take it into consideration.
– Özgür
9 hours ago
Thank you for the information. I'll take it into consideration.
– Özgür
9 hours ago
Thank you for the information. I'll take it into consideration.
– Özgür
9 hours ago
add a comment |
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%2f461124%2fhow-do-i-get-permission-for-exam-materials%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