LaTeX:如何使用必需的参数作为可选参数的默认参数?

发布于 2024-07-16 09:11:42 字数 443 浏览 10 评论 0原文

我正在尝试创建一个带有两个参数的 LaTeX 命令,其中一个参数是可选的。 通常我会这样做,因为

\newcommand{\whatever}[2][default]{first #1 second #2}

default 是第一个参数的默认值。 但对于这个命令,我希望将第二个参数的值用作第一个参数的默认值 - 也就是说,我想

\whatever{blah}
\whatever{foo}
\whatever[lol]{rofl}

相当于

\whatever[blah]{blah}
\whatever[foo]{foo}
\whatever[lol]{rofl}

有人知道如何做到这一点吗? 如有必要,我可以降级到纯 TeX。

I'm trying to create a LaTeX command with two arguments, one of them optional. Normally I'd do this as

\newcommand{\whatever}[2][default]{first #1 second #2}

where default is the default value for the first argument. But for this command I want the value of the second argument to be used as the default value for the first argument - that is, I want

\whatever{blah}
\whatever{foo}
\whatever[lol]{rofl}

to be equivalent to

\whatever[blah]{blah}
\whatever[foo]{foo}
\whatever[lol]{rofl}

Does anyone know how to do this? I can drop down to plain TeX if necessary.

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

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

发布评论

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

评论(3

離殇 2024-07-23 09:11:42

LaTeX 内核有一个内置的方法可以做到这一点,尽管它没有被广泛使用。 下面是一个示例:

\makeatletter
\newcommand\@foo[2][]{[1: #1, 2: #2.] }
\newcommand\foo{\@dblarg\@foo}
\makeatother

\foo{same}
\foo[hello]{world}

显然,如果您在 .sty.cls 文件中执行此操作,则可以删除 \makeatletter 命令。

The LaTeX kernel has an inbuilt method of doing this, although it's not widely used. Here's an example:

\makeatletter
\newcommand\@foo[2][]{[1: #1, 2: #2.] }
\newcommand\foo{\@dblarg\@foo}
\makeatother

\foo{same}
\foo[hello]{world}

Obviously, the \makeatletter commands can be dropped if you're doing this inside a .sty or .cls file.

蒲公英的约定 2024-07-23 09:11:42

一个丑陋的黑客:

\usepackage{ifthen}

...

\newcommand{\whatever}[2][uniquenonesense]{
   ... 
   \ifthenelse{\equal{#2}{uniquenonesense}}{#1}{#2}
   ...
}

大概你想要一些更干净的东西,但这就是我所拥有的。

根据您的语义,uniquenonesense 可能为空。

An ugly hack:

\usepackage{ifthen}

...

\newcommand{\whatever}[2][uniquenonesense]{
   ... 
   \ifthenelse{\equal{#2}{uniquenonesense}}{#1}{#2}
   ...
}

Presumably you wanted something cleaner, but that's what I've got.

Depending on your semantics, uniquenonesense might be empty.

与之呼应 2024-07-23 09:11:42
    \newcommand{\haha}[2]{\backslash whatever \left[ #1 \right] 
    \left[   #1     \right] }

    \begin{document}
    $\haha{blah}{blah}$\\
    $\haha{stupid}{Idiot}$
    \end{document} % This works very well.
    \newcommand{\haha}[2]{\backslash whatever \left[ #1 \right] 
    \left[   #1     \right] }

    \begin{document}
    $\haha{blah}{blah}$\\
    $\haha{stupid}{Idiot}$
    \end{document} % This works very well.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文