背页多行多列

问题描述 投票:0回答:2

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

example table with cells taking up multiple columns

latex overleaf multirow
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}

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}

© www.soinside.com 2019 - 2024. All rights reserved.