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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- 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: 10324
- 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