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}
¿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
\centering
directivas.Reduzca los anchos de ambos
minipage
ambientes de0.5\textwidth
a0.45\textwidth
. (UsarInserte la directiva
\hfill
al final del primerminipage
entorno.En la lista de argumentos opcionales de ambas
\includegraphics
declaraciones, reempláceloheight=5cm
conwidth=\textwidth
.Reemplace ambas instancias de
\captionof{figure}
con\caption
.
\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}