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.



enter image description here










share|improve this question


























    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.



    enter image description here










    share|improve this question
























      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.



      enter image description here










      share|improve this question













      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.



      enter image description here







      conditionals exam ulem ifthenelse






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 11 hours ago









      Özgür

      1,4171019




      1,4171019






















          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}


          enter image description here



          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.






          share|improve this answer





















          • Thank you for the information. I'll take it into consideration.
            – Özgür
            9 hours ago











          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',
          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
          });


          }
          });














           

          draft saved


          draft discarded


















          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

























          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}


          enter image description here



          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.






          share|improve this answer





















          • Thank you for the information. I'll take it into consideration.
            – Özgür
            9 hours ago















          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}


          enter image description here



          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.






          share|improve this answer





















          • Thank you for the information. I'll take it into consideration.
            – Özgür
            9 hours ago













          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}


          enter image description here



          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.






          share|improve this answer












          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}


          enter image description here



          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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


















          • 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


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Futebolista

          Lallio

          Jornalista