0

我想使用多行和多列在背面制作这样的表格。无法弄清楚如何使用这些命令

在此处输入图像描述

4

2 回答 2

0

您可以使用该tabularx包,然后 Latex 将自动调整您的列宽以适应可用空间:

\documentclass{article}

\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{geometry}

\begin{document}


\begin{tabularx}{\textwidth}{p{2cm}p{1.5cm}p{1.5cm}p{1.5cm}X}
\toprule
& Largest problem solved & Computer & Time & Remarks\\
\midrule
Dynamic programming (Held and Karp) & 13 & 7090 & 0.98 &
\vspace*{-\baselineskip}
\begin{enumerate}
\item Storage limitations prevented the solution of larger problems
\item Required computer time is deterministic
\end{enumerate}\\
\bottomrule
\end{tabularx}

\end{document}
于 2021-12-14T09:05:55.233 回答
0

这是一个间距更好的解决方案。我还为表格使用了较小的字体 ( footnotesize)。

\documentclass{article}

\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage[shortlabels]{enumitem}

% See https://tex.stackexchange.com/a/6454/113546
\newcommand\compress{\csname @minipagetrue\endcsname}
\newenvironment{smallenum}{\begin{enumerate}[(1), left=0pt, nosep]\compress}{\end{enumerate}}
\newcolumntype{q}[1]{>{\centering}p{#1}}
\newcolumntype{r}[1]{>{\centering}m{#1}}

\begin{document}

\begin{footnotesize}\noindent
  \begin{tabularx}{\textwidth}{@{}p{3cm} q{8mm} q{8mm} q{6mm} X}
    \toprule
    & \multicolumn{1}{r{8mm}}{Largest problem solved} & \multicolumn{1}{r{8mm}}{Com\-puter} & \multicolumn{1}{r{6mm}}{Time (min)} & 
    \multicolumn{1}{>{\centering}m{5cm}}{Remarks} \\
    \midrule Dynamic programming (Held and Karp) & 13 & 7090 & 0.98 &
    \begin{smallenum}
    \item  Storage limitations prevented the solution of larger problems
    \item Required computer time is deterministic
    \end{smallenum} \\
    Branch-and-Bound (Little, et al) & 40 & 7090 & 8.37 &
    \begin{smallenum}
      \item Time reported is the expected time and one might experience large deviations for a particular problem.
      \item Time reported refers to randomly selected, asymmetric $c_{ij}$. Considerable difficulty reported for Euclidean problems.
    \end{smallenum}\\
    \bottomrule
  \end{tabularx}
\end{footnotesize}

\end{document}

在此处输入图像描述

于 2021-12-15T16:58:10.480 回答