如何修正字幕的外观

如何修正字幕的外观

我关注了教程我在这个网站上看到了,但是标题太长了,看起来不正确。

这是我使用的代码:

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

它看起来像这样: 字幕太过密集

我该如何纠正这个问题?我该如何在中间添加一个空格,或者,如果不可能的话,例如,将“semicon-”发送到下一行?提前谢谢!

答案1

一些建议和意见:

  • 删除所有 3\centering条指令。

  • minipage将两个环境的宽度从0.5\textwidth减小到0.45\textwidth。(使用

  • \hfill在第一个环境的末尾插入指令minipage

  • 在两个语句的可选参数列表中\includegraphicsheight=5cm用替换width=\textwidth

  • \captionof{figure}用替换 的两个实例\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}

相关内容