更改字幕字体大小

更改字幕字体大小

我想改变单个旋转表格标题的字体大小(肯定不是所有表格/图表中的所有标题)

现在我可以将文本包装\caption\scriptsize{}中,但这也会改变字体表格索引特别糟糕

我正在用 进行编译pdflatex

该表如下所示:

\begin{landscape}
 \begin{table}
  \centering
  \footnotesize{
   \begin{tabular}{l|c|c|}
   \hline
   blah & blah & blah
   \hline
   \end{tabular}
  }
  \caption{Lots of words...}
  \label{table-label}
 \end{table}
\end{landscape}

答案1

如果您的文档类与caption包,您可以\captionsetup对特定表使用它的命令(我删除了与标题问题无关的代码部分):

\documentclass{article}
\usepackage{caption}

\begin{document}

\listoftables

\begin{table}
\captionsetup{font=scriptsize}
\centering
\begin{tabular}{lc}
  \hline
  text & text \\
  \hline
\end{tabular}
\caption{Lots of words...}
\label{table-label}
\end{table}

\end{document}

在此处输入图片描述

相关内容