
答案1
这可以通过多种方式实现 - minipage
s、\parbox
es、tabular
s 或其他框。下面是使用tabular
和tabularx
(为了方便,尽管这不是必要的):
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\noindent
\begingroup
\setlength{\tabcolsep}{0pt}% Remove intercolumn spacing
\begin{tabularx}{\textwidth}{ >{\centering}X >{\centering\arraybackslash}X }
\begin{tabular}[t]{c}
Item 1 \\ Details of item \\ specification
\end{tabular} &
\begin{tabular}[t]{c}
Item 2 \\ Details of item \\ specification
\end{tabular} \\ \\
\begin{tabular}[t]{c}
Item 3 \\ Details of item \\ specification
\end{tabular} &
\begin{tabular}[t]{c}
Item 4 \\ Details of item \\ specification
\end{tabular} \\ \\
\begin{tabular}[t]{c}
Item 5 \\ Details of item \\ specification
\end{tabular}
\end{tabularx}
\endgroup
\end{document}