Graphics, Figures & Tables ⇒ Survey Table
Survey Table
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Survey Table
Stefan
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: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Survey Table
There are many symbols for squares that you could use, such as:
Code: Select all
\usepackage{bbding}
\newcommand{\smallbox}{\raisebox{-4pt}{\large\SquareCastShadowTopRight}}

Stefan