我有一个图,它是从 Matlab 导出为 eps 的子图。它是并排的 2 个图。我希望每个图都有一个标题,每个标题都位于每个相应图的中央。据我了解,我不能使用子图,因为我只有一个图。
你能想到什么办法来实现这一点吗?
抱歉,没有 MWE。
答案1
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\textwidth]{2plots}
\raggedright
\hspace*{.9cm}%
\begin{minipage}[t]{5cm}
\caption{some sort of plot}
\end{minipage}%
\hspace{1.2cm}%
\begin{minipage}[t]{5cm}
\caption{a different plot showing a different function}
\end{minipage}%
\end{figure}
\end{document}