正如您所知,标题可以\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}