如何使用逐字创建带有项目符号的两列(如图所示)

如何使用逐字创建带有项目符号的两列(如图所示)

在此处输入图片描述

我正在尝试创建一个表格,就像我论文中的图片所示。在一列中我必须写出问题,同时给出解决方案。请帮忙。提前致谢

答案1

这是一种可能性,即xltabular,它结合了longtabletabularx,以及listliketab,这适用于此类问题。如有必要,您的行问题解决方案将可供参考。但是,请注意,与所有长表一样,它只能在两行之间跨页。

\documentclass{report}
\usepackage{amsmath, nccmath} 
\usepackage{xltabular}
\usepackage{listliketab}

\begin{document}

\storestyleof{enumerate}
\begin{listliketab}
\newcounter{tabenum}\setcounter{tabenum}{0}
\newcommand{\tabitem}{\refstepcounter{tabenum}\bfseries\thetabenum.}
    \centering
    \begin{xltabular}{\linewidth}{@{}LX|X@{}}
 & \multicolumn{1}{c}{\bfseries Problem} & \multicolumn{1}{c}{\bfseries Solution } \\
\endfirsthead
 & \multicolumn{1}{c}{\textbf{Problem}(continued)} & \multicolumn{1}{c}{textbf{Solution} (continued)} \\
\endhead
\multicolumn{3}{r}{\footnotesize to be continued} 
\endfoot
\endlastfoot
 \tabitem & Solve this first problem: \useshortskip
\[ a = b\] & And here is the solution to the first problem \\[-4ex]
 \tabitem\label{pb2} & This is the second problem & The solution to the second problem
    \end{xltabular}
\end{listliketab}

We see in \ref{pb2} …

\end{document} 

在此处输入图片描述

相关内容