所以我必须做一个包含大量图像的 pdf,而且我想避免代码重复,所以我想创建一个类似函数的东西,它以两个参数作为输入:
- 图像名称
- 字幕文字
所以这个函数代码应该是:
\centering
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=\linewidth]{./Image_name}
\subcaption*{Caption}
\end{subfigure}
\end{figure}
因此,我不需要为每个图像编写上述代码,而只想编写类似以下内容的代码:
\my_function(图像名称,标题测试)
这可能吗?谢谢