如何不在“表格列表”中添加表格描述

如何不在“表格列表”中添加表格描述

目前,我正在 \caption{此处我写入说明} 中写入表格说明。问题是,我也在 \caption 中写入标题。这导致表格列表同时包含标题和说明(见图)。在此处输入图片描述

我确信有办法将标题和说明分开,这样表格列表/图表列表就可以正确显示,即只包含标题。也许还有一种方法可以让标题比表格本身的说明更突出。

我正在使用这个代码来制作表格:

\begin{table}[!htbp] \centering 
\renewcommand\thetable{Appendix. A1}
    \captionsetup{width=16cm}
  \caption{This is the Title of the table. This is some text that are not supposed to be added in the "List of tables", but only together with the table.
} 
    \label{tab:my_label}
    \begin{tabular}{@{}l*{7}{c}}
    \toprule
    \\[-1.8ex]\hline 
\hline \\[-1.8ex] 
    & & \thead{Obs.} & \thead{Mean} & \thead{Median} & \thead{Std.dev} & \thead{p-value\\(means)} & \thead{p-value\\(medians)}
    \\\midrule
    \hline \\[-2.3ex] 
Log(amount issued) & Green bond & $25$ & $20.009$ & $20.030$ & $0.620$ & 0.207 & 0.009
 \hline \\[-1.8ex] 
    \\\bottomrule
    \end{tabular}
\end{table}

相关内容