表格中的副标题

表格中的副标题

我有一张表格

\documentclass[12pt,a4paper]{article} % 
\begin{document}    
\begin{table}
\begin{center}
\caption{\centering How many people \\
 \scriptsize     Average over a thousand simulations}
\label{table1}
\begin{tabular}{llll}
 $r \backslash 2n$  & 100 & 200& 1000\\
 \hline\\
 2 & 25.42 & 25.76 &25.47\\
 \hline
 \end{tabular}
 \end{center}
 \end{table}
\end{document}

我的问题是,这里有一个不错的字幕,看起来很棒,但运行时却出错了。有没有办法消除错误但又让其看起来完全一样?我真的不喜欢 \tablenotes。

编辑:我收到的错误是

 Argument of \caption @ydblarg has an extra }

答案1

因此,通过加载caption包,我得到了一个解决方案:

\documentclass[12pt,a4paper]{article} % 
\usepackage{caption}
\begin{document}    
\begin{table}
\centering
\caption{ How many people \\ 
\scriptsize  Average over a thousand simulations}
\label{table1}
\begin{tabular}{llll}
 $r \backslash 2n$  & 100 & 200& 1000\\
 \hline\\
 2 & 25.42 & 25.76 &25.47\\
 \hline
 \end{tabular}
 \end{table}
\end{document}

在此处输入图片描述

相关内容