答案1
作为英格玛建议,许多选项之一是使用 来绘制分隔符tikz
。最好使用宏来避免重复代码。我看不清楚你的图片,但你可以得到一个想法并根据需要更改以下示例。
\documentclass{article}
\usepackage {lipsum} % for dummy text
\usepackage {tikz}
\newcommand{\oldsep}
{%
\begin{center}\begin{tikzpicture}[thick]
\draw[-latex] (-1,0) -- (-0.025,0);
\draw[-latex] ( 1,0) -- ( 0.025,0);
\draw[fill=white] (0,0) circle (0.075);
\end{tikzpicture}\end{center}
}
\newcommand{\othersep}
{%
\begin{center}\begin{tikzpicture}[thick]
\draw (-1,0) -- (1,0);
\fill[rotate=45] (-0.075,-0.075) rectangle (0.075,0.075);
\end{tikzpicture}\end{center}
}
\newcommand{\onemore}
{%
\begin{center}\begin{tikzpicture}[thick]
\draw (-1,0) -- (1,0);
\foreach\i in {-1,1}
\fill [x=\i cm,rotate=-45*\i] (0.05,0.05) rectangle (0.15,0.15);
\draw[fill=white] (0,0) circle (0.075);
\end{tikzpicture}\end{center}
}
\begin{document}
\lipsum[1]
\oldsep
\lipsum[2]
\othersep
\lipsum[3]
\onemore
\lipsum[4]
\end{document}
编辑:我制作了第三个分隔符,因为原始图片的质量非常低,我可能无法正确看到它。