Cómo corregir la apariencia de los subtítulos

Cómo corregir la apariencia de los subtítulos

Seguí untutorialLo vi en este sitio web, pero los subtítulos no se ven bien porque son demasiado largos.

Este es el código que utilicé:

\begin{figure}[h]
\centering
\begin{minipage}{.5\textwidth}
    \centering
    \includegraphics[height=5cm,keepaspectratio]{figures/chapter_3/p_type_materials_2012.png}
    \captionof{figure}{Figure of merit of p-type semiconductors}
    \label{fig:p-type-zT}
\end{minipage}%
\begin{minipage}{.5\textwidth}
    \centering
    \includegraphics[height=5cm,keepaspectratio]{figures/chapter_3/n_type_materials_2012.png}
    \captionof{figure}{Figure of merit of n-type semiconductors}
    \label{fig:n-type-zT}
\end{minipage}
\end{figure}

Y se ve así: Los subtítulos están demasiado juntos.

¿Cómo puedo corregir esto? ¿Cómo puedo agregar un espacio intermedio o, si no es posible, por ejemplo, enviar el "semicon-" a la siguiente línea? ¡Gracias de antemano!

Respuesta1

Algunas sugerencias y comentarios:

  • Deshazte de las 3 \centeringdirectivas.

  • Reduzca los anchos de ambos minipageambientes de 0.5\textwidtha 0.45\textwidth. (Usar

  • Inserte la directiva \hfillal final del primer minipageentorno.

  • En la lista de argumentos opcionales de ambas \includegraphicsdeclaraciones, reemplácelo height=5cmcon width=\textwidth.

  • Reemplace ambas instancias de \captionof{figure}con \caption.

ingrese la descripción de la imagen aquí

\documentclass{article}
\usepackage[demo]{graphicx} % remove 'demo' option in real doc.

\begin{document}
\begin{figure}[h]

\begin{minipage}{.45\textwidth}
    \includegraphics[width=\textwidth,keepaspectratio]{figures/chapter_3/p_type_materials_2012.png}
    \caption{Figure of merit of p-type semiconductors}
    \label{fig:p-type-zT}
\end{minipage}\hfill
\begin{minipage}{.45\textwidth}
    \includegraphics[width=\textwidth,keepaspectratio]{figures/chapter_3/n_type_materials_2012.png}
    \caption{Figure of merit of n-type semiconductors}
    \label{fig:n-type-zT}
\end{minipage}
\end{figure}
\end{document}

información relacionada