Ajustar el título

Ajustar el título

Como sabes, el título puede \flushrighto \flushleftmediante este comando

\captionsetup{justification=raggedright, singlelinecheck=off}

Ahora mismo quiero hacer elel título de la figura está en el centroyel título de la tabla está a la derechaen el mismo periódico. ¿Cómo puedo hacerlo?

Respuesta1

La \captionsetup[<type>]{<options>}macro toma un argumento opcional para especificar el flotante <type>al que se le debe cambiar la configuración:

ingrese la descripción de la imagen aquí

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

información relacionada