調整標題

調整標題

如您所知,標題可以\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}

相關內容