Ajuste a legenda

Ajuste a legenda

Como você sabe que a legenda pode \flushrightou \flushleftpor este comando

\captionsetup{justification=raggedright, singlelinecheck=off}

Neste momento quero fazer oa legenda da figura está no centroea legenda da tabela está à direitano mesmo jornal. Como eu posso fazer isso?

Responder1

A \captionsetup[<type>]{<options>}macro recebe um argumento opcional para especificar o float <type>que deve ter suas configurações alteradas:

insira a descrição da imagem aqui

\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}

informação relacionada