我是 Latex 的新手。我想创建一个命令来自动修剪图像并将其放在带有标题的图形环境中,但结果显示如下:
我希望图像的宽度 = 文本的宽度,但图像太大,所以标题放在里面,而且在等式 (8) 下图像后面也缺少一行文本。我做了一些研究,但没有任何效果。请问如何解决这个问题?这是我的代码:
\newcommand{\includetrimgraphics}[4][]{
\begin{figure}[H]
\centering
%\scalebox{1}[1]{\includegraphics[trim=0 50 0 50,#1]{#2}}
%\resizebox{\totalheight}{!}{\includegraphics[trim=0 50 0 50,#1]{#2}}
\includegraphics[trim=0 50 0 50,#1]{#2}
\caption{#3}
\label{#4}
\end{figure}}
以下是我调用命令的方式:
\includetrimgraphics[width=\textwidth]{images.png}{Normaliser le ratio entre $\Delta z1_{max}$ et $\Delta z2_{max}$}{fig:1}