5
我希望我的數字和表格的字幕與\ footnotesize具有相同的大小。是否有什麼要放在我的文檔preambule來做到這一點?如何縮小所有數字中字幕的大小
我希望我的數字和表格的字幕與\ footnotesize具有相同的大小。是否有什麼要放在我的文檔preambule來做到這一點?如何縮小所有數字中字幕的大小
使用caption
package到font
鍵值設置爲footnotesize
:
\documentclass{article}
\usepackage{caption}
\captionsetup{font=footnotesize}
\begin{document}
Some regular text set in \verb|\normalsize|.
\begin{table}[t]
\caption{A table using \texttt{\string\footnotesize}.}
\end{table}
\begin{figure}[t]
\caption{A figure using \texttt{\string\footnotesize}.}
\end{figure}
\end{document}
也可以單獨調整標籤的文本格式figure
S和table
小號分開。但是,一致性在這裏是更好的選擇。
太棒了,這工作完美! – 2014-12-02 19:03:00
你如何設置點數? – 2018-02-12 13:44:14
@ZachSmith:使用'\ DeclareCaptionFont'定義你自己的標題字體。請參閱[此貼](https://pastebin.com/Eg42HRWQ)。 – Werner 2018-02-12 16:55:49