如何為具有可選參數的命令定義包裝器?

如何為具有可選參數的命令定義包裝器?

為具有可選參數(例如\chapter)的命令定義包裝器的正確方法是什麼?我的意思是包裝器,而不是克隆,這樣我們就可以將程式碼注入到包裝器中,​​而無需幹擾它作為包裝器的命令。

我就是這樣做的。有更好的方法嗎? (我把條件子句歸功於egreg這裡.)

\documentclass{book}

\newcommand\mychapter[2][] {\if\relax\detokenize{#1}\relax
                             \chapter{#2}
                            \else
                             \chapter[#1]{#2}
                            \fi}

\begin{document}
\tableofcontents
\mychapter[Short title]{Long title}
\end{document}

let\mychapter\chapter將克隆它,這樣它就\mychapter不會成為\chapter.

答案1

是的,有更好的方法:

\usepackage{xparse}

\NewDocumentCommand{\mychapter}{som}{%
  %%% things to do before \chapter
  \IfBooleanTF{#1}
    {\chapter*{#3}}
    {\IfNoValueTF{#2}{\chapter{#3}}{\chapter[#2]{#3}}%
  %%% things to do after \chapter
}

這支援所有三個調用:

\mychapter*{Title}
\mychapter{Title}
\mychapter[Short title]{Long title}

答案2

傳統的xparse在允許更靈活的解決方案之前,方法是\@ifnextchar[檢查[可選參數並將inject其他程式碼放入包裝器中。

有星號的版本也包含在內,也[]可以有一個現在-由OP決定接下來該做什麼[];-)

\documentclass{book}



\newcommand\mychapter[2][]{\if\relax\detokenize{#1}%
                             \chapter{#2}
                            \else
                             \chapter[#1]{#2}
                            \fi}

\makeatletter
\newcommand{\myotherchapter@@opt}[2][]{%
  \chapter[#1]{#2}%
}

\newcommand{\myotherchapter@@noopt}[1]{%
  \chapter{#1}%
}

\newcommand{\myotherchapter@@starredopt}[2][]{%
  % Decide yourself what to do with #1 ;-)
  \chapter*{#2}
}


\newcommand{\myotherchapter@@starrednoopt}[1]{%
  \myotherchapter@@starredopt[#1]{#1}%
}

\newcommand{\myotherchapterstarred}{%
  \@ifnextchar[{\myotherchapter@@starredopt}{\myotherchapter@@starrednoopt}%
}

\newcommand{\myotherchapterunstarred}{%
  \@ifnextchar[{\myotherchapter@@opt}{\myotherchapter@@noopt}%
}

\newcommand{\myotherchapter}{%
  \@ifstar{\myotherchapterstarred}{\myotherchapterunstarred}%
}

\makeatother

\begin{document}

\tableofcontents

\mychapter[Short title]{Long title}

\myotherchapter{First}
\myotherchapter[Short Title]{Long title}

\myotherchapter*[Starred Short Title]{Starred Long title}

\myotherchapter*{Starred Long title}



\end{document}

相關內容