如何创建如下表格?

如何创建如下表格?

我想创建下表,其中不包含估计值(只有两列),我不确定该怎么做:

在此处输入图片描述

编辑:

由于我的表格比图中的长,有没有办法将其分成两列(4列),如下所示:

参数说明 | 参数说明 \[1ex] A blah blah blah | \mu blah blah blah

答案1

仅使用基本表格

\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{lp{2in}}
\toprule
Parameter & Description\\
\midrule
$A$ & Recruitment rate of the\newline population\\
\bottomrule
\end{tabular}
\end{document}

在此处输入图片描述

根据您的编辑:

\documentclass{article}
\usepackage{booktabs}
\begin{document}
\noindent\begin{tabular}{lp{1.5in}lp{1.5in}}
\toprule
Parameter & Description & Parameter & Description\\
\midrule
$A$ & Recruitment rate of the population & $B$ & Transmission coefficient\\
\bottomrule
\end{tabular}
\end{document}

在此处输入图片描述

https://www.overleaf.com/learn/latex/Tables了解有关制作表格的良好教程。

答案2

\begin{table}[]
\begin{tabular}{ll} \hline
 &    \\ \hline
 &    \\
 &    \\
 &  

等等...最后

\hline
\end{tabular}
\caption{}
\end{table}

最坏的情况-使用 https://www.tablesgenerator.com/

相关内容