Latex 新命令

发布于 2024-08-17 05:22:53 字数 469 浏览 4 评论 0原文

我想定义一个像这样的新命令

\newcommand{\bob}[1]{\excerpt \begin{lstlisting} {#1} \end{lstlisting}}

,然后像这样使用它,

\bob{abcd}

但我在乳胶中收到以下错误。

text dropped after begin of listing latex

编辑:

我尝试了以下操作

\newcommand{\boy}[1] {{%
\begin{Verbatim} %
{ #1 } %
\end{Verbatim} }}

,当我尝试使用它时仍然收到错误。

\boy{abc}

I would like to define a new command like this

\newcommand{\bob}[1]{\excerpt \begin{lstlisting} {#1} \end{lstlisting}}

and then use it like this

\bob{abcd}

but i get the following error in latex.

text dropped after begin of listing latex

EDIT:

I tried the following

\newcommand{\boy}[1] {{%
\begin{Verbatim} %
{ #1 } %
\end{Verbatim} }}

And I still get an error when I try to use it.

\boy{abc}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

霊感 2024-08-24 05:22:53

也许您正在寻找 \newenvironment

在这种情况下,您将像这样使用它

\newenvironment{bob}{%
\excerpt \begin{lstlisting}}{%
\end{lstlisting}}

,稍后再使用

\begin{bob}
abcd
\end{bob}

Perhaps you are looking for the \newenvironment macro.

In this case you would use it like this

\newenvironment{bob}{%
\excerpt \begin{lstlisting}}{%
\end{lstlisting}}

and later

\begin{bob}
abcd
\end{bob}
╰つ倒转 2024-08-24 05:22:53

{listing} 环境特殊而神奇;它不能在这样的命令中使用。按照 dmckee 的描述更改为 \newenvironment 设置应该可行。如果您无法做到这一点,请查看 fancyvrb 包。

The {listing} environment is special and magical; it can't be used inside a command like that. Changing to a \newenvironment setup as described by dmckee should work. If you can't make that work, check out the fancyvrb package.

﹂绝世的画 2024-08-24 05:22:53

尝试列表包的 lstnewenvironment。

Try the lstnewenvironment of the listings package.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文