我关注了教程我在这个网站上看到了,但是标题太长了,看起来不正确。
这是我使用的代码:
\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
。在两个语句的可选参数列表中
\includegraphics
,height=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}