我正在嘗試在 newcommands 的小頁面中插入數字,以在 a5 紙上獲取兩個圖像。微量元素:
\documentclass{article}
\usepackage{mwe}
\usepackage[a5paper, margin=5mm]{geometry}
\newcommand{\twoimages}[2]{
\centering
\begin{minipage}
\begin{figure}
\begin{minipage}[c]{\textwidth}
\includegraphics[width=0.97\textwidth]{#1}
\end{minipage}
\noindent
\begin{minipage}[c]{\textwidth}
\includegraphics[width=0.97\textwidth]{#2}
\end{minipage}
\end{figure}
\end{minipage}
}
\begin{document}
\twoimages{example-image-plain}{example-image-plain}
\end{document}
這導致
<to be read again>
\relax
l.21 ...{example-image-plain}{example-image-plain}
我無法發現錯誤。我得到了部分代碼如何在小型頁面中使用圖形?
我已經嘗試過\DeclareRobustCommand
,但沒有運氣。
你能幫我嗎?
答案1
我想太多了。謝謝@leandriis 和https://tex.stackexchange.com/users/134574/phelype-oleinik
\documentclass{article}
\usepackage{mwe}
\usepackage[a5paper, margin=5mm]{geometry}
\newcommand{\twoimages}[2]{
\centering
\begin{minipage}[c]{\textwidth}
\includegraphics[width=0.96\textwidth]{#1}
\noindent
\includegraphics[width=0.96\textwidth]{#2}
\end{minipage}
}
\begin{document}
\twoimages{example-image-plain}{example-image-plain}
\end{document}