调整字幕

调整字幕

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

相关内容