[Tex/LaTex] Questionnaire template?

questionnairetemplates

Is there a template available that allows me to create questionnaires like this one?

http://www.ergo-online.de/site.aspx?url=html/software/verfahren_zur_beurteilung_der/fragebogen_isonorm_online.htm

EDIT:

Based on the answer and comments I did this example:

\begin{table}[htb]
\begin{tikzpicture}
\node (table) [inner sep=0pt] {
\begin{tabularx}{\textwidth}{|X|c|c|c|c|c|X|}
  \hline
  The software ... & - - & - & -/+ & + & + + &\\
  \hline
  is complicated to use & $\square$ & $\square$ & $\square$ & $\square$ & $\square$ & is not complicated to use\\
  \hline
bietet nicht alle Funktionen um die anfallenden Aufgaben effizient zu bewältigen  & $\square$ & $\square$ & $\square$ & $\square$ & $\square$ & bietet alle Funktionen, um die anfallenden Aufgaben effizient zu bewältigen
\end{tabularx}
};
\draw (table.north west) rectangle (table.south east);
\end{tikzpicture}
\end{table}

But now I have to problems. First how can I center the checkboxes (\square) vertically?

How can i make the table wider? I tried to use \pagewidth instead of \textwidth but this doesnt work.

Best Answer

You can use the m column type to center the checkboxes vertically. If you want to make the tabular wider then \textwidth, like 1.2\textwidth, surround it with \makebox[\textwidth]{ ... } to center it.

Here the example code. Note also the $ $ to typeset the - and + symbols.

\documentclass{article}

\usepackage{amssymb}
\usepackage{array}
\usepackage{tabularx}

\newcolumntype{S}{>{\centering\arraybackslash}m{1.5em}}

\renewcommand{\tabularxcolumn}[1]{m{#1}} % redefine 'X' to use 'm'

\begin{document}

\makebox[\textwidth]{%
\begin{tabularx}{1.2\textwidth}{|X|S|S|S|S|S|X|}
  \hline
  The software ... & $--$ & $-$ & $-/+$ & $+$ & $++$ &\\
  \hline
  is complicated to use & $\square$ & $\square$ & $\square$ & $\square$ & $\square$ & is not complicated to use\\
  \hline
bietet nicht alle Funktionen um die anfallenden Aufgaben effizient zu bewältigen  & $\square$ & $\square$ & $\square$ & $\square$ & $\square$ & bietet alle Funktionen, um die anfallenden Aufgaben effizient zu bewältigen
\end{tabularx}%
}

\end{document}
Related Question