Goddess of Justice DB, the database used for storage on IzaroDFS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

190 linhas
6.4 KiB

  1. \documentclass[a4paper,10pt,BCOR10mm,oneside,headsepline]{scrartcl}
  2. \usepackage[french]{babel}
  3. \usepackage[utf8]{inputenc}
  4. \usepackage{wasysym}% provides \ocircle and \Box
  5. \usepackage{enumitem}% easy control of topsep and leftmargin for lists
  6. \usepackage{color}% used for background color
  7. \usepackage{forloop}% used for \Qrating and \Qlines
  8. \usepackage{ifthen}% used for \Qitem and \QItem
  9. \usepackage{typearea}
  10. \areaset{17cm}{26cm}
  11. \setlength{\topmargin}{-1cm}
  12. \usepackage{scrpage2}
  13. \pagestyle{scrheadings}
  14. \ihead{Enquête sur la sécurité des données (fiche particulier)}
  15. \ohead{\pagemark}
  16. \chead{}
  17. \cfoot{}
  18. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  19. %% Beginning of questionnaire command definitions %%
  20. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  21. %%
  22. %% 2010, 2012 by Sven Hartenstein
  23. %% mail@svenhartenstein.de
  24. %% http~://www.svenhartenstein.de
  25. %%
  26. %% Please be warned that this is NOT a full-featured framework for
  27. %% creating (all sorts of) questionnaires. Rather, it is a small
  28. %% collection of LaTeX commands that I found useful when creating a
  29. %% questionnaire. Feel free to copy and adjust any parts you like.
  30. %% Most probably, you will want to change the commands, so that they
  31. %% fit your taste.
  32. %%
  33. %% Also note that I am not a LaTeX expert! Things can very likely be
  34. %% done much more elegant than I was able to. If you have suggestions
  35. %% about what can be improved please send me an email. I intend to
  36. %% add good tipps to my website and to name contributers of course.
  37. %%
  38. %% 10/2012~: Thanks to karathan for the suggestion to put \noindent
  39. %% before \rule!
  40. %% \Qq = Questionaire question. Oh, this is just too simple. It helps
  41. %% making it easy to globally change the appearance of questions.
  42. \newcommand{\Qq}[1]{\textbf{#1}}
  43. %% \QO = Circle or box to be ticked. Used both by direct call and by
  44. %% \Qrating and \Qlist.
  45. \newcommand{\QO}{$\Box$}% or~: $\ocircle$
  46. %% \Qrating = Automatically create a rating scale with NUM steps, like
  47. %% this~: 0--0--0--0--0.
  48. \newcounter{qr}
  49. \newcommand{\Qrating}[1]{\QO\forloop{qr}{1}{\value{qr} < #1}{---\QO}}
  50. %% \Qline = Again, this is very simple. It helps setting the line
  51. %% thickness globally. Used both by direct call and by \Qlines.
  52. \newcommand{\Qline}[1]{\noindent\rule{#1}{0.6pt}}
  53. %% \Qlines = Insert NUM lines with width=\linewith. You can change the
  54. %% \vskip value to adjust the spacing.
  55. \newcounter{ql}
  56. \newcommand{\Qlines}[1]{\forloop{ql}{0}{\value{ql}<#1}{\vskip0em\Qline{\linewidth}}}
  57. %% \Qlist = This is an environment very similar to itemize but with
  58. %% \QO in front of each list item. Useful for classical multiple
  59. %% choice. Change leftmargin and topsep accourding to your taste.
  60. \newenvironment{Qlist}{%
  61. \renewcommand{\labelitemi}{\QO}
  62. \begin{itemize}[leftmargin=1.5em,topsep=-.5em,label={\Square}]
  63. }{%
  64. \end{itemize}
  65. }
  66. %% \Qtab = A "tabulator simulation". The first argument is the
  67. %% distance from the left margin. The second argument is content which
  68. %% is indented within the current row.
  69. \newlength{\qt}
  70. \newcommand{\Qtab}[2]{
  71. \setlength{\qt}{\linewidth}
  72. \addtolength{\qt}{-#1}
  73. \hfill\parbox[t]{\qt}{\raggedright #2}
  74. }
  75. %% \Qitem = Item with automatic numbering. The first optional argument
  76. %% can be used to create sub-items like 2a, 2b, 2c, ... The item
  77. %% number is increased if the first argument is omitted or equals 'a'.
  78. %% You will have to adjust this if you prefer a different numbering
  79. %% scheme. Adjust topsep and leftmargin as needed.
  80. \newcounter{itemnummer}
  81. \newcommand{\Qitem}[2][]{% #1 optional, #2 notwendig
  82. \ifthenelse{\equal{#1}{}}{\stepcounter{itemnummer}}{}
  83. \ifthenelse{\equal{#1}{a}}{\stepcounter{itemnummer}}{}
  84. \begin{enumerate}[topsep=2pt,leftmargin=2.8em]
  85. \item[\textbf{\arabic{itemnummer}#1.}] #2
  86. \end{enumerate}
  87. }
  88. %% \QItem = Like \Qitem but with alternating background color. This
  89. %% might be error prone as I hard-coded some lengths (-5.25pt and
  90. %% -3pt)! I do not yet understand why I need them.
  91. \definecolor{bgodd}{rgb}{0.8,0.8,0.8}
  92. \definecolor{bgeven}{rgb}{0.9,0.9,0.9}
  93. \newcounter{itemoddeven}
  94. \newlength{\gb}
  95. \newcommand{\QItem}[2][]{% #1 optional, #2 notwendig
  96. \setlength{\gb}{\linewidth}
  97. \addtolength{\gb}{-5.25pt}
  98. \ifthenelse{\equal{\value{itemoddeven}}{0}}{%
  99. \noindent\colorbox{bgeven}{\hskip-3pt\begin{minipage}{\gb}\Qitem[#1]{#2}\end{minipage}}%
  100. \stepcounter{itemoddeven}%
  101. }{%
  102. \noindent\colorbox{bgodd}{\hskip-3pt\begin{minipage}{\gb}\Qitem[#1]{#2}\end{minipage}}%
  103. \setcounter{itemoddeven}{0}%
  104. }
  105. }
  106. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  107. %% End of questionnaire command definitions %%
  108. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  109. \begin{document}
  110. \begin{center}
  111. \textbf{\huge Enquête sur la sécurité des données}
  112. \end{center}\vskip1em
  113. \Qitem{ \Qq{Êtes-vous inquiété.e par la collecte d'informations personnelles ou sensibles par les entreprises~?}
  114. \Qtab{3cm}{Peu inquiété.e \Qrating{5}
  115. Très inquiété.e}}
  116. \Qitem{ \Qq{À quel point vous sentez-vous impliqué.e dans la protection de vos données~?}
  117. \Qtab{3cm}{Peu impliqué.e \Qrating{5}
  118. Très impliqué.e}}
  119. \Qitem{ \Qq{Utilisez-vous des outils numériques de protection de la vie privée~?}
  120. \begin{Qlist}
  121. \item Disques chiffrés
  122. \item Systèmes d'exploitation open-source
  123. \item VPN (réseau privé virtuel)
  124. \item Cloud/Disque nuagique chiffré en ligne
  125. \item Messagerie chiffrée (y compris PGP)
  126. \item Autres~: \Qline{4cm}
  127. \end{Qlist}
  128. }
  129. \Qitem{ \Qq{À quelles fins accepteriez-vous que vos données personnelles ou sensibles soient transmises à une tierce partie~?}
  130. \begin{Qlist}
  131. \item À des fins commerciales, dans le cadre~:
  132. \begin{Qlist}
  133. \item de publicité ciblée
  134. \item de téléprospection
  135. \item d'études de marché (données anonymisées)
  136. \end{Qlist}
  137. \item À des fins juridiques, afin d'incriminer sur~:
  138. \begin{Qlist}
  139. \item des délits
  140. \item des crimes
  141. \item des affaires de terrorisme
  142. \end{Qlist}
  143. \item À des fins scientifiques, dans le cadre de recherche en~:
  144. \begin{Qlist}
  145. \item médecine
  146. \item sociologie
  147. \item économie
  148. \end{Qlist}
  149. \item À des fins politiques, afin de déterminer~:
  150. \begin{Qlist}
  151. \item des statistiques anonymes sur votre alignement politique
  152. \item vos demandes et intérets
  153. \end{Qlist}
  154. \end{Qlist}
  155. }
  156. \Qitem{ \Qq{Que pensez-vous de l'état de la protection de vos données contre le vol~?}
  157. \Qtab{3cm}{Insuffisantes \Qrating{5}
  158. Plus que suffisantes}}
  159. \Qitem{ \Qq{Que pensez-vous de l'état de la protection de vos données contre la perte ou la destruction accidentelle~?}
  160. \Qtab{3cm}{Insuffisantes \Qrating{5}
  161. Plus que suffisantes}}
  162. \end{document}