ご存知のとおり、キャプションは\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}