答案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}
除此之外,这是一个典型的tabularx
和booktabs
实施。专门的L
-columns 是为了易于使用而制作的,与\raggedright
X
-columns 相匹配。