paperandpencil.sty 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889
  1. \NeedsTeXFormat{LaTeX2e}
  2. %WICHTIG: PAPERANDPECIL.STY funktioniert nur mit der Dokumentklasse SCRREPRT!!!
  3. %Als Randeinstellung bitte \usepackage[top=...cm,bottom=...cm,left=2.5cm,right=2.5cm]{geometry} wählen
  4. \ProvidesPackage{paperandpencil}[2009/08/11 v1.0]
  5. \RequirePackage{amssymb,latexsym,amsmath}
  6. \RequirePackage{stmaryrd}
  7. \RequirePackage{paralist}
  8. \RequirePackage{longtable}
  9. \RequirePackage{framed}
  10. \RequirePackage{color}
  11. \RequirePackage{array,booktabs,calc}
  12. \definecolor{myColor}{rgb}{0.9,0.9,0.9}
  13. \definecolor{shadecolor}{rgb}{0.9,0.9,0.9}
  14. \definecolor{framecolor}{rgb}{0,0,0}
  15. \setlength{\fboxrule}{0.3mm}
  16. \parindent0cm
  17. \pagestyle{empty}
  18. %%%%%%%%%%QUESTION%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  19. \renewcommand*\thechapter{\bf{\arabic{chapter}.}}
  20. \catcode `@11
  21. \def\question{\@startsection {chapter}{1}{\z@}{-3.5ex plus
  22. -1ex minus -.2ex}{1.5ex plus .2ex}{}}%Fragenumgebung
  23. %%%%%%%%%%QUESTION%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  24. %%%%%%%%%%ANSWERSA%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  25. \newenvironment{answersA}{\vspace{0.25cm}\begin{addmargin}[2cm]{6cm}\begin{compactitem}[]}{\end{compactitem}\end{addmargin}}
  26. %Antwortumgebung für kürzere Antworten mit Kästchen rechts
  27. \newcommand{\pbox}[1]{#1\dotfill$\Box$}
  28. %Befehl füllt Zeile mit Punkten auf und fügt am Ende eine kleine Ankreuzbox ein.
  29. \newcommand{\pbigbox}[1]{#1\dotfill$\square$}
  30. %Befehl füllt Zeile mit Punkten auf und fügt am Ende eine große Ankreuzbox ein.
  31. \newcommand{\ebox}[1]{#1\hfill$\Box$}
  32. %Befehl füllt Zeile mit Leerraum auf und fügt am Ende eine kleine Ankreuzbox ein.
  33. \newcommand{\ebigbox}[1]{#1\hfill$\square$}
  34. %Befehl füllt Zeile mit Leerraum auf und fügt am Ende eine große Ankreuzbox ein.
  35. %%%%%%%%%%ANSWERSA%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  36. %%%%%%%%%%ANSWERSB%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  37. \newenvironment{answersB}{\vspace{0.25cm}\begin{addmargin}[2cm]{6cm}\begin{compactitem}[$\Box$\quad]}{\end{compactitem}\end{addmargin}}
  38. %Antwortumgebung für kürzere Antworten mit kleinem Kästchen links
  39. %%%%%%%%%%ANSWERSB%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  40. %%%%%%%%%%ANSWERSC%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  41. \newenvironment{answersC}{\vspace{0.25cm}\begin{addmargin}[2cm]{6cm}\begin{compactitem}[$\square$\quad]}{\end{compactitem}\end{addmargin}}
  42. %Antwortumgebung für kürzere Antworten mit großem Kästchen links
  43. %%%%%%%%%%ANSWERSC%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  44. %%%%%%%%%%LONGANSWERS%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  45. \newenvironment{longanswersA}{\vspace{0.25cm}\begin{addmargin}[0.5cm]{0cm}\begin{compactitem}[]}{\end{compactitem}\end{addmargin}}
  46. %Antwortumgebung für lange Antworten. Erstreckt sich über gesamte Seitenbreite.
  47. %%%%%%%%%%LONGANSWERS%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  48. %%%%%%%%%%LONGANSWERSB%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  49. \newenvironment{longanswersB}{\vspace{0.25cm}\begin{addmargin}[0.5cm]{0cm}\begin{compactitem}[$\Box$\quad]}{\end{compactitem}\end{addmargin}}
  50. %Antwortumgebung für lange Antworten. Kleine Kästchen links.
  51. %%%%%%%%%%LONGANSWERSB%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  52. %%%%%%%%%%LONGANSWERSC%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  53. \newenvironment{longanswersC}{\vspace{0.25cm}\begin{addmargin}[0.5cm]{0cm}\begin{compactitem}[$\square$\quad]}{\end{compactitem}\end{addmargin}}
  54. %Antwortumgebung für lange Antworten. Kleine Kästchen links.
  55. %%%%%%%%%%LONGANSWERSC%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  56. \newcommand{\df}[1]{#1\dotfill}
  57. %Befehl füllt Zeile mit Punkten auf.
  58. \def\line{~\hrulefill~}
  59. %Trennlinie zwischen einzelnen Fragen
  60. %%%%%%%%%%SONDERKATEGORIEN%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  61. \newcommand{\bbox}{\framebox[0.6cm]{\rule{0cm}{0.6cm}}}
  62. %Größere Box, um dort Zahlen einfügen zu können.
  63. \newcommand{\rbox}{\framebox[0.5cm]{\rule{0cm}{0.3cm}}}
  64. \def\year{$\hfill \bbox\ \bbox\ \bbox\ \bbox\hspace{4cm}$}
  65. \def\yearxxA{$\hfill 19\ \bbox\ \bbox\hspace{4cm}$}
  66. \def\yearxxB{$\hfill 20\ \bbox\ \bbox\hspace{4cm}$}
  67. \def\yearlineA{\hspace{0.5cm}19\raisebox{-4.5mm}{\parbox{1.5cm}{\hrule\strut}}}
  68. \def\yearlineB{\hspace{0.5cm}20\raisebox{-4.5mm}{\parbox{1.5cm}{\hrule\strut}}}
  69. %Geburtsjahr
  70. \def\monthandyearA{$\hfill\mbox{Monat}\ \bbox\ \bbox\quad\mbox{ Jahr } \bbox\ \bbox\ \bbox\ \bbox\hspace{4cm}$}
  71. \def\monthandyearB{$\hfill\stackrel{\bbox\ \bbox}{\mbox{\footnotesize Monat}}\qquad \stackrel{\bbox\ \bbox\ \bbox\ \bbox}{\mbox{ \footnotesize Jahr }}\hspace{4cm}$}
  72. %Monat und Jahr
  73. \def\km{$\hfill \bbox\ \bbox\ \bbox\ \bbox\ ,\ \bbox\mbox{ km}\hspace{6cm}$}
  74. %Kilometerangabe in xx,x km
  75. \def\xxbox{$\bbox\ \bbox\ $}
  76. %zwei leere Kästchen nebeneinander
  77. \def\xxxbox{$\bbox\ \bbox\ \bbox\ $}
  78. %drei leere Kästchen nebeneinander
  79. \def\percent{\raisebox{-4.5mm}{$\bbox\ \bbox\ \bbox\ \%$}}
  80. %Prozentangaben
  81. \newcommand{\linetext}[1]{\raisebox{-4.5mm}{\parbox{6.5cm}{\hrule\strut \centering\footnotesize {\em #1}}}}
  82. %Linie mit kursivem Text darunter
  83. %%%%%%%%%%SONDERKATEGORIEN%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  84. %%%%%%%%%%FILTER%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  85. \def\goto{$\Box$\raisebox{0.45mm}{$\!\rightarrow$}}
  86. %Filterpfeil
  87. \newenvironment{linkanswers}{\begin{addmargin}{2cm}\begin{longtable}{p{6cm}p{7cm}}}{\end{longtable}\end{addmargin}\vspace{-0.5cm}}
  88. \newcommand{\framedlink}[2]{\df{#1}\goto&\fbox{#2}\\}
  89. \newcommand{\link}[2]{\df{#1}\goto&#2\\}
  90. \newcommand{\nolink}[1]{#1\phantom{ii\,\,}&\\}
  91. \newcommand{\linkwithquestion}[3]{\df{#1}\goto&#2\smallskip
  92. {#3}\\}
  93. %%%%%%%%%%FILTER%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  94. \newenvironment{fshaded}{%
  95. \def\FrameCommand{\fcolorbox{framecolor}{shadecolor}}%
  96. \MakeFramed {\FrameRestore}}%
  97. {\endMakeFramed} %Sorgt für umrahmte Boxen in der vorher festegelgten Farbe 'shadecolor' und der Umrandung 'framecolor'.
  98. %%%%%%%%%%%%%%%%%%%%UPA%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  99. \newcommand{\hupAeleven}[2]{\begin{center}
  100. \begin{tabular}{p{2.5cm}ccccccccccp{2.5cm}}
  101. #1 & & & & & & & & & && #2\\
  102. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  103. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11
  104. \end{tabular}
  105. \end{center}}
  106. \newcommand{\hupAten}[2]{\begin{center}
  107. \begin{tabular}{p{2.5cm}cccccccccp{2.5cm}}
  108. #1 & & & & & & & & & & #2\\
  109. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  110. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10
  111. \end{tabular}
  112. \end{center}}
  113. \newcommand{\hupAnine}[2]{\begin{center}
  114. \begin{tabular}{p{2.5cm}ccccccccp{2.5cm}}
  115. #1 & & & & & & & & & #2\\
  116. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  117. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9
  118. \end{tabular}
  119. \end{center}}
  120. \newcommand{\hupAeight}[2]{\begin{center}
  121. \begin{tabular}{p{2.5cm}cccccccp{2.5cm}}
  122. #1 & & & & & & & & #2\\
  123. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  124. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8
  125. \end{tabular}
  126. \end{center}}
  127. \newcommand{\hupAseven}[2]{\begin{center}
  128. \begin{tabular}{p{2.5cm}ccccccp{2.5cm}}
  129. #1 & & & & & & & #2\\
  130. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  131. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7
  132. \end{tabular}
  133. \end{center}}
  134. \newcommand{\hupAsix}[2]{\begin{center}
  135. \begin{tabular}{p{2.5cm}cccccp{2.5cm}}
  136. #1 & & & & & & #2\\
  137. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  138. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6
  139. \end{tabular}
  140. \end{center}}
  141. \newcommand{\hupAfive}[2]{\begin{center}
  142. \begin{tabular}{p{2.5cm}ccccp{2.5cm}}
  143. #1 & & & & & #2\\
  144. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  145. \hfill0 & 1 & 2 & 3 & 4 & 5
  146. \end{tabular}
  147. \end{center}}
  148. %%%%%%%%%%%%%%%%%%%%UPA%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  149. %%%%%%%%%%%%%%%%%%%%UPB%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  150. \newcommand{\hupBeleven}[2]{\begin{center}
  151. \begin{tabular}{p{2.5cm}cccccccccp{2.5cm}}
  152. #1 & & & & & & & & && #2\\
  153. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$& $\Box$\\
  154. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11
  155. \end{tabular}
  156. \end{center}}
  157. \newcommand{\hupBten}[2]{\begin{center}
  158. \begin{tabular}{p{2.5cm}ccccccccp{2.5cm}}
  159. #1 & & & & & & & & & #2\\
  160. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  161. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10
  162. \end{tabular}
  163. \end{center}}
  164. \newcommand{\hupBnine}[2]{\begin{center}
  165. \begin{tabular}{p{2.5cm}cccccccp{2.5cm}}
  166. #1 & & & & & & & & #2\\
  167. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  168. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9
  169. \end{tabular}
  170. \end{center}}
  171. \newcommand{\hupBeight}[2]{\begin{center}
  172. \begin{tabular}{p{2.5cm}ccccccp{2.5cm}}
  173. #1 & & & & & & & #2\\
  174. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  175. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7 & 8
  176. \end{tabular}
  177. \end{center}}
  178. \newcommand{\hupBseven}[2]{\begin{center}
  179. \begin{tabular}{p{2.5cm}cccccp{2.5cm}}
  180. #1 & & & & & & #2\\
  181. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  182. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7
  183. \end{tabular}
  184. \end{center}}
  185. \newcommand{\hupBsix}[2]{\begin{center}
  186. \begin{tabular}{p{2.5cm}ccccp{2.5cm}}
  187. #1 & & & & & #2\\
  188. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  189. \hfill1 & 2 & 3 & 4 & 5 & 6
  190. \end{tabular}
  191. \end{center}}
  192. \newcommand{\hupBfive}[2]{\begin{center}
  193. \begin{tabular}{p{2.5cm}cccp{2.5cm}}
  194. #1 & & & & #2\\
  195. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  196. \hfill1 & 2 & 3 & 4 & 5
  197. \end{tabular}
  198. \end{center}}
  199. %%%%%%%%%%%%%%%%%%%%UPB%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  200. %%%%%%%%%%%%%%%%%%%%UPC%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  201. \newcommand{\hupCeleven}[2]{\begin{center}
  202. \begin{tabular}{p{2.5cm}ccccccccccp{2.5cm}}
  203. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10&11\\
  204. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$& $\Box$\\
  205. #1 & & & & & & & & & && #2
  206. \end{tabular}
  207. \end{center}}
  208. \newcommand{\hupCten}[2]{\begin{center}
  209. \begin{tabular}{p{2.5cm}cccccccccp{2.5cm}}
  210. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10\\
  211. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  212. #1 & & & & & & & & & & #2
  213. \end{tabular}
  214. \end{center}}
  215. \newcommand{\hupCnine}[2]{\begin{center}
  216. \begin{tabular}{p{2.5cm}ccccccccp{2.5cm}}
  217. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9\\
  218. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  219. #1 & & & & & & & & & #2
  220. \end{tabular}
  221. \end{center}}
  222. \newcommand{\hupCeight}[2]{\begin{center}
  223. \begin{tabular}{p{2.5cm}cccccccp{2.5cm}}
  224. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
  225. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  226. #1 & & & & & & & & #2
  227. \end{tabular}
  228. \end{center}}
  229. \newcommand{\hupCseven}[2]{\begin{center}
  230. \begin{tabular}{p{2.5cm}ccccccp{2.5cm}}
  231. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6 & 7\\
  232. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  233. #1 & & & & & & & #2
  234. \end{tabular}
  235. \end{center}}
  236. \newcommand{\hupCsix}[2]{\begin{center}
  237. \begin{tabular}{p{2.5cm}cccccp{2.5cm}}
  238. \hfill0 & 1 & 2 & 3 & 4 & 5 & 6\\
  239. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  240. #1 & & & & & & #2
  241. \end{tabular}
  242. \end{center}}
  243. \newcommand{\hupCfive}[2]{\begin{center}
  244. \begin{tabular}{p{2.5cm}ccccp{2.5cm}}
  245. \hfill0 & 1 & 2 & 3 & 4 & 5\\
  246. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  247. #1 & & & & & #2
  248. \end{tabular}
  249. \end{center}}
  250. %%%%%%%%%%%%%%%%%%%%UPC%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  251. %%%%%%%%%%%%%%%%%%%%UPD%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  252. \newcommand{\hupDeleven}[2]{\begin{center}
  253. \begin{tabular}{p{2.5cm}cccccccccp{2.5cm}}
  254. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10&11\\
  255. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$& $\Box$\\
  256. #1 & & & & & & & & & & #2
  257. \end{tabular}
  258. \end{center}}
  259. \newcommand{\hupDten}[2]{\begin{center}
  260. \begin{tabular}{p{2.5cm}ccccccccp{2.5cm}}
  261. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10\\
  262. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  263. #1 & & & & & & & & & #2
  264. \end{tabular}
  265. \end{center}}
  266. \newcommand{\hupDnine}[2]{\begin{center}
  267. \begin{tabular}{p{2.5cm}cccccccp{2.5cm}}
  268. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9\\
  269. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  270. #1 & & & & & & & & #2
  271. \end{tabular}
  272. \end{center}}
  273. \newcommand{\hupDeight}[2]{\begin{center}
  274. \begin{tabular}{p{2.5cm}ccccccp{2.5cm}}
  275. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7 & 8\\
  276. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  277. #1 & & & & & & & #2
  278. \end{tabular}
  279. \end{center}}
  280. \newcommand{\hupDseven}[2]{\begin{center}
  281. \begin{tabular}{p{2.5cm}cccccp{2.5cm}}
  282. \hfill1 & 2 & 3 & 4 & 5 & 6 & 7\\
  283. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  284. #1 & & & & & & #2
  285. \end{tabular}
  286. \end{center}}
  287. \newcommand{\hupDsix}[2]{\begin{center}
  288. \begin{tabular}{p{2.5cm}ccccp{2.5cm}}
  289. \hfill1 & 2 & 3 & 4 & 5 & 6\\
  290. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  291. #1 & & & & & #2
  292. \end{tabular}
  293. \end{center}}
  294. \newcommand{\hupDfive}[2]{\begin{center}
  295. \begin{tabular}{p{2.5cm}cccp{2.5cm}}
  296. \hfill1 & 2 & 3 & 4 & 5\\
  297. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  298. #1 & & & & #2
  299. \end{tabular}
  300. \end{center}}
  301. %%%%%%%%%%%%%%%%%%%%UPD%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  302. %%%%%%%%%%%%%%%%%%%%DOWNA%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  303. \newcommand{\hdownAeleven}[2]{\begin{center}
  304. \begin{tabular}{p{2.5cm}ccccccccccp{2.5cm}}
  305. #1 & & & & & & & & & && #2\\
  306. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$& $\Box$\\
  307. \hfill11&10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 & 0
  308. \end{tabular}
  309. \end{center}}
  310. \newcommand{\hdownAten}[2]{\begin{center}
  311. \begin{tabular}{p{2.5cm}cccccccccp{2.5cm}}
  312. #1 & & & & & & & & & & #2\\
  313. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  314. \hfill10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 & 0
  315. \end{tabular}
  316. \end{center}}
  317. \newcommand{\hdownAnine}[2]{\begin{center}
  318. \begin{tabular}{p{2.5cm}ccccccccp{2.5cm}}
  319. #1 & & & & & & & & & #2\\
  320. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  321. \hfill9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 & 0
  322. \end{tabular}
  323. \end{center}}
  324. \newcommand{\hdownAeight}[2]{\begin{center}
  325. \begin{tabular}{p{2.5cm}cccccccp{2.5cm}}
  326. #1 & & & & & & & & #2\\
  327. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  328. \hfill8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 & 0
  329. \end{tabular}
  330. \end{center}}
  331. \newcommand{\hdownAseven}[2]{\begin{center}
  332. \begin{tabular}{p{2.5cm}ccccccp{2.5cm}}
  333. #1 & & & & & & & #2\\
  334. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  335. \hfill7 & 6 & 5 & 4 & 3 & 2 & 1 & 0
  336. \end{tabular}
  337. \end{center}}
  338. \newcommand{\hdownAsix}[2]{\begin{center}
  339. \begin{tabular}{p{2.5cm}cccccp{2.5cm}}
  340. #1 & & & & & & #2\\
  341. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  342. \hfill6 & 5 & 4 & 3 & 2 & 1 & 0
  343. \end{tabular}
  344. \end{center}}
  345. \newcommand{\hdownAfive}[2]{\begin{center}
  346. \begin{tabular}{p{2.5cm}ccccp{2.5cm}}
  347. #1 & & & & & #2\\
  348. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  349. \hfill5 & 4 & 3 & 2 & 1 & 0
  350. \end{tabular}
  351. \end{center}}
  352. %%%%%%%%%%%%%%%%%%%%DOWNA%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  353. %%%%%%%%%%%%%%%%%%%%DOWNB%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  354. \newcommand{\hdownBeleven}[2]{\begin{center}
  355. \begin{tabular}{p{2.5cm}cccccccccp{2.5cm}}
  356. #1 & & & & & & & & && #2\\
  357. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$& $\Box$\\
  358. \hfill11&10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1
  359. \end{tabular}
  360. \end{center}}
  361. \newcommand{\hdownBten}[2]{\begin{center}
  362. \begin{tabular}{p{2.5cm}ccccccccp{2.5cm}}
  363. #1 & & & & & & & & & #2\\
  364. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  365. \hfill10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1
  366. \end{tabular}
  367. \end{center}}
  368. \newcommand{\hdownBnine}[2]{\begin{center}
  369. \begin{tabular}{p{2.5cm}cccccccp{2.5cm}}
  370. #1 & & & & & & & & #2\\
  371. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  372. \hfill9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1
  373. \end{tabular}
  374. \end{center}}
  375. \newcommand{\hdownBeight}[2]{\begin{center}
  376. \begin{tabular}{p{2.5cm}ccccccp{2.5cm}}
  377. #1 & & & & & & & #2\\
  378. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  379. \hfill8 & 7 & 6 & 5 & 4 & 3 & 2 & 1
  380. \end{tabular}
  381. \end{center}}
  382. \newcommand{\hdownBseven}[2]{\begin{center}
  383. \begin{tabular}{p{2.5cm}cccccp{2.5cm}}
  384. #1 & & & & & & #2\\
  385. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  386. \hfill7 & 6 & 5 & 4 & 3 & 2 & 1
  387. \end{tabular}
  388. \end{center}}
  389. \newcommand{\hdownBsix}[2]{\begin{center}
  390. \begin{tabular}{p{2.5cm}ccccp{2.5cm}}
  391. #1 & & & & & #2\\
  392. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  393. \hfill6 & 5 & 4 & 3 & 2 & 1
  394. \end{tabular}
  395. \end{center}}
  396. \newcommand{\hdownBfive}[2]{\begin{center}
  397. \begin{tabular}{p{2.5cm}cccp{2.5cm}}
  398. #1 & & & & #2\\
  399. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  400. \hfill5 & 4 & 3 & 2 & 1
  401. \end{tabular}
  402. \end{center}}
  403. %%%%%%%%%%%%%%%%%%%%DOWNB%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  404. %%%%%%%%%%%%%%%%%%%%DOWNC%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  405. \newcommand{\hdownCeleven}[2]{\begin{center}
  406. \begin{tabular}{p{2.5cm}ccccccccccp{2.5cm}}
  407. \hfill11&10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 & 0\\
  408. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$& $\Box$\\
  409. #1 & & & & & & & & & & & #2
  410. \end{tabular}
  411. \end{center}}
  412. \newcommand{\hdownCten}[2]{\begin{center}
  413. \begin{tabular}{p{2.5cm}cccccccccp{2.5cm}}
  414. \hfill10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 & 0\\
  415. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  416. #1 & & & & & & & & & & #2
  417. \end{tabular}
  418. \end{center}}
  419. \newcommand{\hdownCnine}[2]{\begin{center}
  420. \begin{tabular}{p{2.5cm}ccccccccp{2.5cm}}
  421. \hfill9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 & 0\\
  422. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  423. #1 & & & & & & & & & #2
  424. \end{tabular}
  425. \end{center}}
  426. \newcommand{\hdownCeight}[2]{\begin{center}
  427. \begin{tabular}{p{2.5cm}cccccccp{2.5cm}}
  428. \hfill8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 & 0\\
  429. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  430. #1 & & & & & & & & #2
  431. \end{tabular}
  432. \end{center}}
  433. \newcommand{\hdownCseven}[2]{\begin{center}
  434. \begin{tabular}{p{2.5cm}ccccccp{2.5cm}}
  435. \hfill7 & 6 & 5 & 4 & 3 & 2 & 1 & 0\\
  436. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  437. #1 & & & & & & & #2
  438. \end{tabular}
  439. \end{center}}
  440. \newcommand{\hdownCsix}[2]{\begin{center}
  441. \begin{tabular}{p{2.5cm}cccccp{2.5cm}}
  442. \hfill6 & 5 & 4 & 3 & 2 & 1 & 0\\
  443. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  444. #1 & & & & & & #2
  445. \end{tabular}
  446. \end{center}}
  447. \newcommand{\hdownCfive}[2]{\begin{center}
  448. \begin{tabular}{p{2.5cm}ccccp{2.5cm}}
  449. \hfill5 & 4 & 3 & 2 & 1 & 0\\
  450. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  451. #1 & & & & & #2
  452. \end{tabular}
  453. \end{center}}
  454. %%%%%%%%%%%%%%%%%%%%DOWNC%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  455. %%%%%%%%%%%%%%%%%%%%DOWND%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  456. \newcommand{\hdownDeleven}[2]{\begin{center}
  457. \begin{tabular}{p{2.5cm}cccccccccp{2.5cm}}
  458. \hfill11&10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1\\
  459. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$& $\Box$\\
  460. #1 & & & & & & & & && #2
  461. \end{tabular}
  462. \end{center}}
  463. \newcommand{\hdownDten}[2]{\begin{center}
  464. \begin{tabular}{p{2.5cm}ccccccccp{2.5cm}}
  465. \hfill10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1\\
  466. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  467. #1 & & & & & & & & & #2
  468. \end{tabular}
  469. \end{center}}
  470. \newcommand{\hdownDnine}[2]{\begin{center}
  471. \begin{tabular}{p{2.5cm}cccccccp{2.5cm}}
  472. \hfill9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1\\
  473. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  474. #1 & & & & & & & & #2
  475. \end{tabular}
  476. \end{center}}
  477. \newcommand{\hdownDeight}[2]{\begin{center}
  478. \begin{tabular}{p{2.5cm}ccccccp{2.5cm}}
  479. \hfill8 & 7 & 6 & 5 & 4 & 3 & 2 & 1\\
  480. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  481. #1 & & & & & & & #2
  482. \end{tabular}
  483. \end{center}}
  484. \newcommand{\hdownDseven}[2]{\begin{center}
  485. \begin{tabular}{p{2.5cm}cccccp{2.5cm}}
  486. \hfill7 & 6 & 5 & 4 & 3 & 2 & 1\\
  487. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  488. #1 & & & & & & #2
  489. \end{tabular}
  490. \end{center}}
  491. \newcommand{\hdownDsix}[2]{\begin{center}
  492. \begin{tabular}{p{2.5cm}ccccp{2.5cm}}
  493. \hfill6 & 5 & 4 & 3 & 2 & 1\\
  494. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  495. #1 & & & & & #2
  496. \end{tabular}
  497. \end{center}}
  498. \newcommand{\hdownDfive}[2]{\begin{center}
  499. \begin{tabular}{p{2.5cm}cccp{2.5cm}}
  500. \hfill5 & 4 & 3 & 2 & 1\\
  501. \hfill$\Box$& $\Box$ & $\Box$ & $\Box$ & $\Box$\\
  502. #1 & & & & #2
  503. \end{tabular}
  504. \end{center}}
  505. %%%%%%%%%%%%%%%%%%%%DOWND%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  506. %%%%%%%%%%%%%%%%%%%%OPENQUESTIONS%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  507. \newcommand{\openone}{\begin{addmargin}{1.5cm}
  508. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  509. \end{addmargin}}
  510. \newcommand{\opentwo}{\begin{addmargin}{1.5cm}
  511. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  512. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  513. \end{addmargin}}
  514. \newcommand{\openthree}{\begin{addmargin}{1.5cm}
  515. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  516. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  517. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  518. \end{addmargin}}
  519. \newcommand{\openfour}{\begin{addmargin}{1.5cm}
  520. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  521. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  522. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  523. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  524. \end{addmargin}}
  525. \newcommand{\openfive}{\begin{addmargin}{1.5cm}
  526. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  527. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  528. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  529. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  530. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  531. \end{addmargin}}
  532. \newcommand{\opensix}{\begin{addmargin}{1.5cm}
  533. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  534. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  535. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  536. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  537. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  538. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  539. \end{addmargin}}
  540. \newcommand{\openseven}{\begin{addmargin}{1.5cm}
  541. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  542. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  543. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  544. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  545. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  546. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  547. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  548. \end{addmargin}}
  549. \newcommand{\openeight}{\begin{addmargin}{1.5cm}
  550. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  551. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  552. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  553. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  554. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  555. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  556. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  557. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  558. \end{addmargin}}
  559. \newcommand{\opennine}{\begin{addmargin}{1.5cm}
  560. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  561. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  562. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  563. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  564. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  565. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  566. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  567. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  568. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  569. \end{addmargin}}
  570. \newcommand{\openten}{\begin{addmargin}{1.5cm}
  571. \vspace{0.4cm}\raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  572. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  573. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  574. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  575. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  576. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  577. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  578. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  579. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  580. \raisebox{-4.5mm}{\parbox{13cm}{\hrule\strut}}\vspace{0.4cm}
  581. \end{addmargin}}
  582. \newcommand{\opendotsone}{\begin{addmargin}{1.5cm}
  583. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  584. \end{addmargin}}
  585. \newcommand{\opendotstwo}{\begin{addmargin}{1.5cm}
  586. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  587. \dotfill\vspace{0.4cm}
  588. \end{addmargin}}
  589. \newcommand{\opendotsthree}{\begin{addmargin}{1.5cm}
  590. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  591. \dotfill\vspace{0.4cm}
  592. \dotfill\vspace{0.4cm}
  593. \end{addmargin}}
  594. \newcommand{\opendotsfour}{\begin{addmargin}{1.5cm}
  595. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  596. \dotfill\vspace{0.4cm}
  597. \dotfill\vspace{0.4cm}
  598. \dotfill\vspace{0.4cm}
  599. \end{addmargin}}
  600. \newcommand{\opendotsfive}{\begin{addmargin}{1.5cm}
  601. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  602. \dotfill\vspace{0.4cm}
  603. \dotfill\vspace{0.4cm}
  604. \dotfill\vspace{0.4cm}
  605. \dotfill\vspace{0.4cm}
  606. \end{addmargin}}
  607. \newcommand{\opendotssix}{\begin{addmargin}{1.5cm}
  608. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  609. \dotfill\vspace{0.4cm}
  610. \dotfill\vspace{0.4cm}
  611. \dotfill\vspace{0.4cm}
  612. \dotfill\vspace{0.4cm}
  613. \dotfill\vspace{0.4cm}
  614. \end{addmargin}}
  615. \newcommand{\opendotsseven}{\begin{addmargin}{1.5cm}
  616. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  617. \dotfill\vspace{0.4cm}
  618. \dotfill\vspace{0.4cm}
  619. \dotfill\vspace{0.4cm}
  620. \dotfill\vspace{0.4cm}
  621. \dotfill\vspace{0.4cm}
  622. \dotfill\vspace{0.4cm}
  623. \end{addmargin}}
  624. \newcommand{\opendotseight}{\begin{addmargin}{1.5cm}
  625. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  626. \dotfill\vspace{0.4cm}
  627. \dotfill\vspace{0.4cm}
  628. \dotfill\vspace{0.4cm}
  629. \dotfill\vspace{0.4cm}
  630. \dotfill\vspace{0.4cm}
  631. \dotfill\vspace{0.4cm}
  632. \dotfill\vspace{0.4cm}
  633. \end{addmargin}}
  634. \newcommand{\opendotsnine}{\begin{addmargin}{1.5cm}
  635. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  636. \dotfill\vspace{0.4cm}
  637. \dotfill\vspace{0.4cm}
  638. \dotfill\vspace{0.4cm}
  639. \dotfill\vspace{0.4cm}
  640. \dotfill\vspace{0.4cm}
  641. \dotfill\vspace{0.4cm}
  642. \dotfill\vspace{0.4cm}
  643. \dotfill\vspace{0.4cm}
  644. \end{addmargin}}
  645. \newcommand{\opendotsten}{\begin{addmargin}{1.5cm}
  646. \vspace{0.4cm}\dotfill\vspace{0.4cm}
  647. \dotfill\vspace{0.4cm}
  648. \dotfill\vspace{0.4cm}
  649. \dotfill\vspace{0.4cm}
  650. \dotfill\vspace{0.4cm}
  651. \dotfill\vspace{0.4cm}
  652. \dotfill\vspace{0.4cm}
  653. \dotfill\vspace{0.4cm}
  654. \dotfill\vspace{0.4cm}
  655. \dotfill\vspace{0.4cm}
  656. \end{addmargin}}
  657. %%%%%%%%%%%%%%%%%%%%OPENQUESTIONS%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  658. %%%%%%%%%%%%%%%%%%%%HTEXT%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  659. \newcommand{\htextlinethree}[3]{\vspace{0.5cm}
  660. \begin{center}\begin{tabular}{p{3cm}p{3cm}|p{3cm}p{0.001cm}}
  661. \centering #1&\centering #2&\centering #3&\\&&&\\\centering$\Box$&\centering$\Box$&\centering$\Box$&\\
  662. \end{tabular}\end{center}\vspace{0.5cm}}
  663. \newcommand{\htextlinefour}[4]{\vspace{0.5cm}
  664. \begin{center}\begin{tabular}{p{2.5cm}p{2.5cm}p{2.5cm}|p{2.5cm}p{0.001cm}}
  665. \centering #1&\centering #2&\centering #3&\centering #4&\\&&&&\\\centering$\Box$&\centering$\Box$&\centering$\Box$& \centering$\Box$&\\\end{tabular}\end{center}\vspace{0.5cm}}
  666. \newcommand{\htextlinefive}[5]{\vspace{0.5cm}
  667. \begin{center}\begin{tabular}{p{2cm}p{2cm}p{2cm}p{2cm}|p{2cm}p{0.001cm}}
  668. \centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\\&&&&&\\\centering$\Box$&\centering$\Box$&\centering$\Box$ &\centering$\Box$&\centering$\Box$&\\\end{tabular}\end{center}\vspace{0.5cm}}
  669. \newcommand{\htextlinesix}[6]{\vspace{0.5cm}
  670. \begin{center}\begin{tabular}{p{2cm}p{2cm}p{2cm}p{2cm}p{2cm}|p{2cm}p{0.001cm}}
  671. \centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\centering #6&\\&&&&&&\\\centering$\Box$&\centering$\Box$& \centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\\\end{tabular}\end{center}\vspace{0.5cm}}
  672. \newcommand{\htextlineseven}[7]{\vspace{0.5cm}
  673. \begin{center}\begin{tabular}{p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}|p{1.8cm}p{0.001cm}}
  674. \centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\centering #6&\centering #7&\\&&&&&&&\\\centering$\Box$& \centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\\\end{tabular}\end{center}
  675. \vspace{0.5cm}}
  676. \newcommand{\htextthree}[3]{\vspace{0.5cm}
  677. \begin{center}\begin{tabular}{p{3cm}p{3cm}p{3cm}p{0.001cm}}
  678. \centering #1&\centering #2&\centering #3&\\&&&\\\centering$\Box$&\centering$\Box$&\centering$\Box$&\\
  679. \end{tabular}\end{center}\vspace{0.5cm}}
  680. \newcommand{\htextfour}[4]{\vspace{0.5cm}
  681. \begin{center}\begin{tabular}{p{2.5cm}p{2.5cm}p{2.5cm}p{2.5cm}p{0.001cm}}
  682. \centering #1&\centering #2&\centering #3&\centering #4&\\&&&&\\\centering$\Box$&\centering$\Box$&\centering$\Box$& \centering$\Box$&\\\end{tabular}\end{center}\vspace{0.5cm}}
  683. \newcommand{\htextfive}[5]{\vspace{0.5cm}
  684. \begin{center}\begin{tabular}{p{2cm}p{2cm}p{2cm}p{2cm}p{2cm}p{0.001cm}}
  685. \centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\\&&&&&\\\centering$\Box$&\centering$\Box$&\centering$\Box$ &\centering$\Box$&\centering$\Box$&\\\end{tabular}\end{center}\vspace{0.5cm}}
  686. \newcommand{\htextsix}[6]{\vspace{0.5cm}
  687. \begin{center}\begin{tabular}{p{2cm}p{2cm}p{2cm}p{2cm}p{2cm}p{2cm}p{0.001cm}}
  688. \centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\centering #6&\\&&&&&&\\\centering$\Box$&\centering$\Box$& \centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\\\end{tabular}\end{center}\vspace{0.5cm}}
  689. \newcommand{\htextseven}[7]{\vspace{0.5cm}
  690. \begin{center}\begin{tabular}{p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{0.001cm}}
  691. \centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\centering #6&\centering #7&\\&&&&&&&\\\centering$\Box$& \centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\\\end{tabular}\end{center}
  692. \vspace{0.5cm}}
  693. %%%%%%%%%%%%%%%%%%%%HTEXT%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  694. %%%%%%%%%%%%%%%%%%%%VERTIKALBLOCK%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  695. \newcommand{\vertikalblocktwo}[3]{\vspace{0.5cm}\begin{tabular}{p{6cm}p{2cm}p{2cm}p{0.001cm}}
  696. &\centering #1&\centering #2&\\#3\end{tabular}\vspace{0.5cm}}
  697. \newcommand{\blocktexttwo}[1]{#1\vspace{0.2cm}& \centering$\Box$ & \centering$\Box$&\\}
  698. \newcommand{\vertikalblockthree}[4]{\vspace{0.5cm}\begin{tabular}{p{6cm}p{2cm}p{2cm}p{2cm}p{0.001cm}}
  699. &\centering #1&\centering #2&\centering #3&\\#4\end{tabular}\vspace{0.5cm}}
  700. \newcommand{\blocktextthree}[1]{#1\vspace{0.2cm}& \centering$\Box$ & \centering$\Box$ & \centering$\Box$ &\\}
  701. \newcommand{\vertikalblockfour}[5]{\vspace{0.5cm}\begin{tabular}{p{6cm}p{2cm}p{2cm}p{2cm}p{2cm}p{0.001cm}}
  702. &\centering #1&\centering #2&\centering #3&\centering #4&\\#5\end{tabular}\vspace{0.5cm}}
  703. \newcommand{\blocktextfour}[1]{#1\vspace{0.2cm}& \centering$\Box$ & \centering$\Box$ & \centering$\Box$ & \centering$\Box$&\\}
  704. \newcommand{\vertikalblockfive}[6]{\vspace{0.5cm}\begin{tabular}{p{4.7cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{0.000001cm}}
  705. &\centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\\#6\end{tabular}\vspace{0.5cm}}
  706. \newcommand{\blocktextfive}[1]{#1\vspace{0.2cm}& \centering$\Box$ & \centering$\Box$ & \centering$\Box$ & \centering$\Box$&\centering$\Box$&\\}
  707. %%%%%%%%%%%%%%%%%%%%VERTIKALBLOCK%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  708. %%%%%%%%%%%%%%%%%%%%HYBRID%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  709. \newcommand{\hybridbracket}[2]{\begin{displaymath}\left.\begin{array}{p{6.5cm}}#1\end{array}\right\}\mbox{#2}\end{displaymath}}
  710. \newcommand{\hybridline}[2]{\begin{displaymath}\begin{array}{p{6.5cm}}\df{#1}\end{array}\linetext{#2}\end{displaymath}}
  711. \newcommand{\hybridclear}[1]{\begin{displaymath}\begin{array}{p{6.5cm}}#1\end{array}\end{displaymath}}
  712. \newcommand{\longline}{\raisebox{-4.5mm}{\parbox{8cm}{\hrule\strut}}}
  713. %%%%%%%%%%%%%%%%%%%%HYBRID%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  714. %%%%%%%%%%%%%%%%%%%%HORIZONTALTEXT%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  715. \newcommand{\horizontalthree}[2]{\vspace{0.5cm}\begin{center}\begin{tabular}{p{3cm}p{3cm}p{3cm}p{0.001cm}}
  716. #1\centering$\Box$&\centering$\Box$&\centering$\Box$&\\#2\end{tabular}\end{center}\vspace{0.5cm}}
  717. \newcommand{\upthree}[3]{\centering #1&\centering #2&\centering #3&\\}
  718. \newcommand{\downthree}[3]{\centering #1&\centering #2&\centering #3&\\}
  719. \newcommand{\horizontalfour}[2]{\vspace{0.5cm}\begin{center}\begin{tabular}{p{2.5cm}p{2.5cm}p{2.5cm}p{2.5cm}p{0.001cm}}
  720. #1\centering$\Box$&\centering$\Box$&\centering$\Box$& \centering$\Box$&\\#2\end{tabular}\end{center}\vspace{0.5cm}}
  721. \newcommand{\upfour}[4]{\centering #1&\centering #2&\centering #3&\centering #4&\\}
  722. \newcommand{\downfour}[4]{\centering #1&\centering #2&\centering #3&\centering #4&\\}
  723. \newcommand{\horizontalfive}[2]{\vspace{0.5cm}\begin{center}\begin{tabular}{p{2cm}p{2cm}p{2cm}p{2cm}p{2cm}p{0.001cm}}
  724. #1\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\\#2\end{tabular}\end{center}\vspace{0.5cm}}
  725. \newcommand{\upfive}[5]{\centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\\}
  726. \newcommand{\downfive}[5]{\centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\\}
  727. \newcommand{\horizontalsix}[2]{\vspace{0.5cm}\begin{center}\begin{tabular}{p{2cm}p{2cm}p{2cm}p{2cm}p{2cm}p{2cm}p{0.001cm}}
  728. #1\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\\#2\end{tabular}\end{center}\vspace{0.5cm}}
  729. \newcommand{\upsix}[6]{\centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\centering #6&\\}
  730. \newcommand{\downsix}[6]{\centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\centering #6&\\}
  731. \newcommand{\horizontalseven}[2]{\vspace{0.5cm}\begin{center}\begin{tabular}{p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{1.8cm}p{0.001cm}}#1\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$&\centering$\Box$& \centering$\Box$&\\#2\end{tabular}\end{center}\vspace{0.5cm}}
  732. \newcommand{\upseven}[7]{\centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\centering #6&\centering #7&\\}
  733. \newcommand{\downseven}[7]{\centering #1&\centering #2&\centering #3&\centering #4&\centering #5&\centering #6&\centering #7&\\}
  734. %%%%%%%%%%%%%%%%%%%%HORIZONTALTEXT%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  735. \newenvironment{coloredfilter}{\begin{fshaded}\begin{addmargin}{0.5cm}}{\end{addmargin}\end{fshaded}}
  736. %%%%%%%%%%%%%%%%%%%%SEMANTISCHES%DIFFERENTIAL%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  737. \newenvironment{semanticfive}{\begin{center}\vspace{0.5cm}
  738. \begin{tabular}{p{3.5cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{3.5cm}}
  739. \cline{2-6}
  740. & \centering1 & \centering2 & \centering3 & \centering4 & \centering5 & \\\hline}{\end{tabular}
  741. \end{center}\vspace{0.5cm}}
  742. \newcommand{\semfive}[2]{\multicolumn{1}{|c|}{#1} &&&&&& \multicolumn{1}{c|}{#2}\\\hline}
  743. \newenvironment{semanticsix}{\begin{center}\vspace{0.5cm}
  744. \begin{tabular}{p{3.5cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{3.5cm}}
  745. \cline{2-7}
  746. & \centering1 & \centering2 & \centering3 & \centering4 & \centering5 & \centering6 & \\\hline}{\end{tabular}
  747. \end{center}\vspace{0.5cm}}
  748. \newcommand{\semsix}[2]{\multicolumn{1}{|c|}{#1} &&&&&&& \multicolumn{1}{c|}{#2}\\\hline}
  749. \newenvironment{semanticseven}{\begin{center}\vspace{0.5cm}
  750. \begin{tabular}{p{3.5cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{0.4cm}|p{3.5cm}}
  751. \cline{2-8}
  752. & \centering1 & \centering2 & \centering3 & \centering4 & \centering5 & \centering6 & \centering7 & \\\hline}{\end{tabular}
  753. \end{center}\vspace{0.5cm}}
  754. \newcommand{\semseven}[2]{\multicolumn{1}{|c|}{#1} &&&&&&&& \multicolumn{1}{c|}{#2}\\\hline}
  755. %%%%%%%%%%%%%%%%%%%%SEMANTISCHES%DIFFERENTIAL%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  756. %%%%%%%%%%%%%%%%%%%%RANKING%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  757. \newenvironment{ranking}{\begin{center}\begin{tabular}{lp{0.1cm}l}}{\end{tabular}\end{center}}
  758. \newcommand{\categories}[2]{{\bf #1}&& {\bf #2}\\[0.2cm]}
  759. \newcommand{\rankbracket}[1]{#1&&[\ \ ]\\[0.1cm]}
  760. \newcommand{\rankbox}[1]{#1&&$\rbox$\\[0.1cm]}
  761. \newcommand{\rankopen}[1]{\linetext{}&& #1\\[0.2cm]}
  762. %%%%%%%%%%%%%%%%%%%%RANKING%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  763. \endinput