我想创建一个围绕几种可能性交替/循环的部分分隔符。
我现在有的代码:
\documentclass{article}
\usepackage{halloweenmath}
\def\SectionDivider{$$\mathwitch \mathwitch \mathwitch$$}
\begin{document}
1
\SectionDivider
2
\SectionDivider
3
\SectionDivider
4
\SectionDivider
5
\SectionDivider
6
\SectionDivider
7
\end{document}
我现在得到的输出 PDF:
我想要的输出 PDF:
上面所需的 PDF 是通过以下代码完成的,但我希望 \SectionDivider 自动为我完成此操作,循环遍历 (i) 女巫;(ii) 南瓜;和 (iii) 鬼魂。
\documentclass{article}
\usepackage{halloweenmath}
\def\SectionDivider{$$\mathwitch \mathwitch \mathwitch$$}
\begin{document}
1
\SectionDivider
2
$$\pumpkin \pumpkin \pumpkin$$
3
$$\mathrightghost \mathrightghost \mathrightghost$$
4
\SectionDivider
5
$$\pumpkin \pumpkin \pumpkin$$
6
$$\mathrightghost \mathrightghost \mathrightghost$$
7
\end{document}
答案1
\documentclass{article}
\newcounter{SecDiv}\setcounter{SecDiv}{-1}
\usepackage{halloweenmath}
\newcommand{\SectionDivider}{\stepcounter{SecDiv}
\ifnum\theSecDiv=3
\setcounter{SecDiv}{0}
\fi
\typeout{\theSecDiv}
\ifcase\theSecDiv
$$\mathwitch \mathwitch \mathwitch$$
\or
$$\pumpkin \pumpkin \pumpkin$$
\or
$$\mathrightghost \mathrightghost \mathrightghost$$
\fi
}
\begin{document}
1
\SectionDivider
2
\SectionDivider
3
\SectionDivider
4
\SectionDivider
5
\SectionDivider
6
\SectionDivider
7
\end{document}