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

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
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}
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