LyX 和 classicthesis:浮动表格中注释的行距(如脚注)

LyX 和 classicthesis:浮动表格中注释的行距(如脚注)

我使用 LyX 和 classicthesis 模板。现在我想在浮动表格下方(在浮动环境中)添加几行注释。原则上,这没有任何问题,但行距与文本中的行距相同。这看起来很奇怪,因为我还将文本大小设置为“较小”。

我希望这些注释在大小和行距方面看起来像脚注(显然不是在页面底部,而是在表格下方)。有人知道 classicthesis 中脚注的确切行距吗,以便我可以手动应用它?

或者是否存在更通用的解决方案,以便我不必手动更改大小和行距?

答案1

我想,有了它threeparttable和它的tablenotes环境,它就更符合你的要求了:

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{booktabs, caption, makecell}
\renewcommand\theadfont{\bfseries}
\usepackage[flushleft]{threeparttable}

\begin{document}

 \begin{table}[!htbp]\centering
 \caption{An Interesting Table}
 \begin{threeparttable}
    \begin{tabular}{l c c c}
    \toprule\midrule
    \thead{First\\ head} & \thead{Second\\ head} & \thead{Third\\ Head} & \thead{Fourth\\ Head}\\
     \midrule
    Blah & Blah & Blah\tnote{a} & Blah\tnote{b} \\
    \bottomrule
    \end{tabular}
   \begin{tablenotes}\footnotesize
 \item[a] Blahblahblah.%
  \item[b] Fiddle dee dee!
 \end{tablenotes}
 \end{threeparttable}
    \label{table2}
 \end{table}

\end{document} 

在此处输入图片描述

相关内容