想要一张这样的桌子:请帮忙

想要一张这样的桌子:请帮忙

在此处输入图片描述

已经能够使用表格环境 (tabularx) 执行此操作,但没有成功。我的论文需要这个。谢谢

答案1

听取一些建议表格和逐项单元格开头需要进行少许垂直调整itemize。单元格结尾也一样tabular

在此处输入图片描述

\documentclass{article}
\usepackage[margin=1in]{geometry}% Just for this example
\usepackage{booktabs,tabularx}

\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\begin{document}

\noindent
\begin{tabularx}{\textwidth}{ *{4}{L} }
  \toprule
  \centering Author(s) &
  \centering Aims &
  \centering Modelling approach &
  \centering\arraybackslash Conclusions \\
  \midrule
  You and me and them &
  Obtain general insights into the population-dynamical properties of possible scenarios of 
    scrapie transmission in a sheep flock &
  \mbox{}\par\vspace{\dimexpr-\baselineskip-\topsep-\partopsep\relax}% https://tex.stackexchange.com/a/108912/5764
  \begin{itemize}
    \item Deterministic model framework comprising most of the aspects that are of relevance
      (potentially or in reality) to the transmission dynamics of scrapie
    \item General insights from analytical considerations and approximations
  \end{itemize} &
  \mbox{}\par\vspace{\dimexpr-\baselineskip-\topsep-\partopsep\relax}% https://tex.stackexchange.com/a/108912/5764
  \begin{itemize}
    \item Dependence of basic reproduction number~($R_0$) and generation time on other
      parameters gives insight into the effects of these parameters
    \item Simplified models yields insights into interplay of horizontal and vertical
      transmission, and the characteristics of endemic scrapie
  \end{itemize} \\[-\normalbaselineskip]

  \bottomrule
\end{tabularx}

\end{document}

除此之外,这是一个典型的tabularxbooktabs实施。专门的L-columns 是为了易于使用而制作的,与\raggedright X-columns 相匹配。

相关内容