\ifdefstring{command}{str1 OR str2}{yes}{no}
需要实现类似上述的操作。是否可以对 \ifdefstring 的字符串部分使用逻辑运算符?
包裹 :etoolbox
命令=字符串类型
我添加到了etoolbox
这个项目并使用了\ifdefstring
源:https://github.com/posquit0/Awesome-CV
答案1
您可以构建一个布尔表达式:
\documentclass{article}
\usepackage{etoolbox}
\makeatletter
\newcommand{\ifdefstringor}[2]{%
\begingroup\edef\x{\endgroup
\noexpand\ifboolexpr{
test {\noexpand\ifdefstring{\noexpand#1}{\@firstoftwo#2}}
or
test {\noexpand\ifdefstring{\noexpand#1}{\@secondoftwo#2}}
}%
}\x
}
\makeatother
\newcommand{\fooA}{str1}
\newcommand{\fooB}{str2}
\newcommand{\fooC}{str3}
\begin{document}
\ifdefstringor{\fooA}{{str1}{str2}}{yes}{no}
\ifdefstringor{\fooB}{{str1}{str2}}{yes}{no}
\ifdefstringor{\fooC}{{str1}{str2}}{yes}{no}
\ifdefstringor{\fooD}{{str1}{str2}}{yes}{no}
\end{document}