Como você sabe que a legenda pode \flushright
ou \flushleft
por 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:
\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}