缺少 \endcsname 插入。在 newcommand 中的 minipage 中插入图形时“放松”

缺少 \endcsname 插入。在 newcommand 中的 minipage 中插入图形时“放松”

我正在尝试使用新命令在 minipages 中插入图形,以便在 a5 纸上获取两幅图像。MWE:

\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}

相关内容