I'm trying to configure a yes / no tick box questionaire using the tabular environment.
The problem I have is merely how to produce a uniformly sized tick box in the centre of both the 'yes' and 'no' columns.
Any help appreciated

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
Code: Select all
\usepackage{amssymb}
Code: Select all
\begin{tabular}{|c|c|c|}
\hline
{\bfseries Question} & {\bfseries Yes} & {\bfseries No}\\
\hline\hline
First question & $\square$ & $\square$\\
\hline
\end{tabular}
Code: Select all
\documentclass[a4paper]{article}
\usepackage[ngerman]{babel}
%\load BB ding symbol package
\usepackage{bbding}
\begin{document}
\begin{center}
\Large tickbox form\\
\vspace{10mm}
\normalsize
\begin{tabular}{l c c}
\textbf{Questions} & \textbf{Yes} & \textbf{No}\\
\textbf{Question 1:} & {\Square} & {\Square} \\
\textbf{Question 2:} & {\Square} & {\Square}\\
\textbf{Question 3:} & {\Square} & {\Square}\\
\textbf{Question 4:} & {\Square} & {\Square}\\
\end{tabular}
\end{center}
\end{document}
Code: Select all
\documentclass[a4paper]{article}
\usepackage[ngerman]{babel}
\usepackage{bbding}
\usepackage{array}
\begin{document}
\begin{center}
{\Large tickbox form}\\
\vspace{10mm}
\begin{tabular}{>{\bfseries}l c c}
Questions & \textbf{Yes} & \textbf{No} \\
Question 1: & \Square & \Square \\
Question 2: & \Square & \Square \\
Question 3: & \Square & \Square \\
Question 4: & \Square & \Square \\
\end{tabular}
\end{center}
\end{document}
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