大家好。如何在 Latex 中创建拉曼图?我已经绘制了它,但我无法使用 Latex 获得它。那么我该如何在两个软件之间合并?
答案1
如果要重新绘制,我们需要数据。由于您已经绘制了它,因此请将图片另存为,raman.png
然后\icludegraphics
从graphicx
包中使用。
您可以使用minipage
s 按照您想要的方式对齐它们。
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[htb]
\centering
\begin{minipage}{0.48\textwidth}
\includegraphics[width=\linewidth]{example-image}
\caption{Some picture}
\end{minipage}
\hfill
\begin{minipage}{0.48\textwidth}
\includegraphics[width=\linewidth]{raman}
\caption{Some picture}
\medskip
\includegraphics[width=\linewidth]{raman}
\caption{Some picture}
\end{minipage}
\end{figure}
\end{document}
如果您想进一步拖延,您可以考虑使用subfigure
from subcaption
package 或subfloat
from subfig
package。