答案1
不要使用一个表格,而要使用多个表格。在表格之间添加 \hspace{0pt} 以获取断点,并使用 \raggedright:
\documentclass{article}
\textwidth=10cm
\begin{document}
\raggedright
\begin{tabular}{l}
\hline
Q1\\
Beta Decay Equation\\
\hline
yes\\\hline
\end{tabular}\hspace{0pt}%
\begin{tabular}{l}
\hline
Q1\\
Beta Decay Equation\\
\hline
yes\\\hline
\end{tabular}\hspace{0pt}%
\begin{tabular}{l}
\hline
Q1\\
Beta Decay Equation\\
\hline
yes\\\hline
\end{tabular}\hspace{0pt}%
\end{document}
答案2
如果表格总是有 3 行,您也可以更改为垂直并使用longtable
:
\documentclass[]{article}
\usepackage{amssymb,longtable}
\begin{document}
\begin{longtable}{l|lc}
Q1 & Beta Decay Equations & \checkmark\\
Q2 & Alpha Decay Equations & \checkmark\\
Q3 & Changes to the Nucleus & \checkmark
\end{longtable}
\end{document}