是否有可能有一个条件允许我们做某事如果给定命令正在被使用文档? 例如,命令\part
如下:
\@ifcommandisbeingused{\part}{<then>}{<else>}
澄清
下面的代码可以避免\bfseries
目录中章节条目的\part
文档。
\documentclass{book}
\makeatletter
\@ifcommandisbeingused{\part}
{
\renewcommand*\l@chapter[2]{%
\ifnum \c@tocdepth >\m@ne
\addpenalty{-\@highpenalty}%
\vskip 1.0em \@plus\p@
\setlength\@tempdima{1.5em}%
\begingroup
\parindent \z@ \rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\leavevmode
\advance\leftskip\@tempdima
\hskip -\leftskip
#1\nobreak\hfil \nobreak\hb@xt@\@pnumwidth{\hss #2}\par
\penalty\@highpenalty
\endgroup
\fi}
}{}
\makeatother
\begin{document}
\part{Lorem}
\chapter{Ipsum}
\end{document}
附言
我已改为\@ifcommandIsBeingUsed
,\@ifcommandisbeingused
因为我记得在 TeX/LaTeX 语言中仅在“非常低级”的宏中使用大写字母。
答案1
此解决方案创建一个文件\jobname.use
,用于跟踪已使用过的命令。通过执行 可以将命令添加到列表中\ifused\<command>{<hook>}
。在本例中,我使用\patchcmd
from来从 中etoolbox
删除。对同一命令执行两次将产生错误。\bfseries
\l@chapter
\ifused
\documentclass{book}
\usepackage{xparse,etoolbox}
\ExplSyntaxOn
\file_if_exist:nT { \c_job_name_tl . use }
{ \file_input:n { \c_job_name_tl . use } }
\iow_new:N \l_cloud_used_stream
\iow_open:Nn \l_cloud_used_stream { \c_job_name_tl . use }
\AtEndDocument { \iow_close:N \l_cloud_used_stream }
\cs_new_protected:Npn \cloud_is_used:N #1
{
\iow_now:Nx \l_cloud_used_stream
{ \exp_not:N \bool_set_true:c { l _ cloud _ if \cs_to_str:N #1 _ bool } }
}
\NewDocumentCommand{\ifused}{mm}
{
\preto #1 { \cloud_is_used:N #1 }
\iow_now:Nx \l_cloud_used_stream
{ \exp_not:N \bool_new:c { l _ cloud _ if \cs_to_str:N #1 _ bool } }
\bool_if:cT { l _ cloud _ if \cs_to_str:N #1 _ bool } { #2 }
}
\ExplSyntaxOff
\makeatletter
\ifused\part{\patchcmd\l@chapter{\bfseries}{}{}{}}
\makeatother
\begin{document}
\tableofcontents
\chapter{Before first part}
\part{First part}
\chapter{After first part}
\part{Second part}
\end{document}