如何修正字幕的外觀

如何修正字幕的外觀

我關注了一個教學我在這個網站上看到過,但標題看起來不太正確,因為它們太長了。

這是我使用的程式碼:

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

它看起來像這樣: 字幕距離太近

我該如何修正這個問題?如何在兩者之間添加空格,或者如果不可能的話,如何將“分號-”發送到下一行?先致謝!

答案1

一些建議和意見:

  • 擺脫所有 3 個\centering指令。

  • minipage將兩個環境的寬度從0.5\textwidth減少到0.45\textwidth。 (使用

  • \hfill在第一個環境的末端插入指令minipage

  • 在兩個語句的可選參數列表中\includegraphics,替換height=5cmwidth=\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}

相關內容