我想在乳胶文档\path
内的定义中使用该命令。\newcommand
但是,我的定义不起作用,因为我期望它起作用。一个最小的例子是
\documentclass[12pt]{article}
\usepackage{path}
\newcommand{\code}[1]{\path!{#1}!}
\begin{document}
Testing the path command with: \code{this.texts.should.not.be.typeseted.on.a.single.line}.
Testing the path command with: \path!this.texts.should.not.be.typeseted.on.a.single.line!.
\end{document}
定义新命令时我犯了什么错误?