Hello guys,
I want to ask, if someone created something like a survey already.
I have a table created with tabular and special parameters. I want to have in every box a small box which is to make like survey.
Ty
Graphics, Figures & Tables ⇒ Survey Table
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Survey Table
Please post the table that you already have. So not every reader trying that would need to start from zero.
Stefan
Stefan
LaTeX.org admin
Survey Table
Code: Select all
\begin{table}[H]
\centering
\resizebox{\textwidth}{!}{
\begin{tabular}{|P{1.5cm}|P{1cm}|P{1.8cm}|P{3cm}|P{3cm}|P{3cm}|P{2.5cm}|P{2cm}|}
\hline
x \# & x & x x & x x & x x & x x & x x & x \\ \hline
y & & & & & & & \\ \hline
y & & & & & & & \\ \hline
y & & & & & & & \\ \hline
y & & & & & & & \\ \hline
y & & & & & & & \\ \hline
\end{tabular}
}
\caption{x x x x}
\label{x}
\end{table}
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Survey Table
A compilable example would be more helpful. Here, a tester does not know which packages are used etc. (I just guess float, array, some definition for P columns)
There are many symbols for squares that you could use, such as:
The
symbols-a4 document shows more (Section 5 Dingbats).
Stefan
There are many symbols for squares that you could use, such as:
Code: Select all
\usepackage{bbding}
\newcommand{\smallbox}{\raisebox{-4pt}{\large\SquareCastShadowTopRight}}

Stefan
LaTeX.org admin