對於圖像,我找到了此問答中提供的解決方案(如何自動從影像中裁切背景?)非常有幫助且易於使用。現在我還想將其用於從 Matlab 匯出的 eps 格式的繪圖。這怎麼可能做到?自動裁剪圖像的程式碼如下所示(從上面的連結複製):
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\section*{Original image}
\fbox{\includegraphics[width=\linewidth]{image.png}}
\section*{Trimmed and clipped image}
\fbox{\includegraphics[width=\linewidth,trim=6.5cm 6cm 6.5cm 4cm,clip]{image.png}}
\section*{Automatic crop}
Note: compile with \verb|--shell-escape|\\
\newcommand\cropped[1]{%
\immediate\write18{convert -trim #1.png #1cropped.png}%
\includegraphics[width=\linewidth]{#1cropped.png}}
\fbox{\cropped{image}}
\end{document}