Graphics, Figures & TablesSurvey Table

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
wishotz
Posts: 18
Joined: Mon Dec 26, 2016 2:39 pm

Survey Table

Post by wishotz »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10300
Joined: Mon Mar 10, 2008 9:44 pm

Survey Table

Post by Stefan Kottwitz »

Please post the table that you already have. So not every reader trying that would need to start from zero.

Stefan
LaTeX.org admin
wishotz
Posts: 18
Joined: Mon Dec 26, 2016 2:39 pm

Survey Table

Post by wishotz »

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}
User avatar
Stefan Kottwitz
Site Admin
Posts: 10300
Joined: Mon Mar 10, 2008 9:44 pm

Survey Table

Post by Stefan Kottwitz »

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:

Code: Select all

\usepackage{bbding}
\newcommand{\smallbox}{\raisebox{-4pt}{\large\SquareCastShadowTopRight}}
The symbols-a4 document shows more (Section 5 Dingbats).

Stefan
LaTeX.org admin
wishotz
Posts: 18
Joined: Mon Dec 26, 2016 2:39 pm

Survey Table

Post by wishotz »

This helped me thanks ;)
Post Reply