如您所知,標題可以\flushright
或\flushleft
透過此命令
\captionsetup{justification=raggedright, singlelinecheck=off}
現在我想做圖的標題位於中心和表格標題位於右側在同一篇論文中。我該怎麼做?
答案1
此巨集採用一個可選參數來指定應更改其設定的\captionsetup[<type>]{<options>}
浮點數:<type>
\documentclass{article}
\usepackage{caption,showframe}
\captionsetup[figure]{justification=centering, singlelinecheck=off}
\captionsetup[table]{justification=raggedleft, singlelinecheck=off}
\begin{document}
\begin{figure}[t]
\caption{A figure caption}
\end{figure}
\begin{table}[t]
\caption{A table caption}
\end{table}
Some text.
\end{document}