答案1
我认为你不需要像 TikZ 这样的机器来实现这一点:
\documentclass{article}%
\usepackage{lipsum}
\newcommand{\threestars}{\begin{center}$ {\ast}\,{\ast}\,{\ast} $\end{center}}
\newcommand{\varthreestars}{\begin{center}\begin{tabular}{c}$\ast$\\[-0.8ex] $\ast\enspace \ast $\end{tabular}\end{center}}
\begin{document}
\lipsum[1]
\threestars
\lipsum[2]
\varthreestars
\lipsum[3]
\end{document}
答案2
在这种情况下,TikZ 可能会有所帮助。
\documentclass[12pt]{article}
\usepackage[margin=3cm]{geometry}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}
\usepackage{lipsum}
\begin{document}
\lipsum[1-1]
\vspace*{2mm}
\noindent\begin{tikzpicture}
\pgfmathsetmacro{\a}{\textwidth/2}
\path (0,0); % move pen to (0,0) left most of the text
\path (\a pt,0) node[scale=5,blue]{$\cdots$};
\end{tikzpicture}
\vspace*{2mm}
\lipsum[1-1]
\vspace*{5mm}
\noindent\begin{tikzpicture}
\pgfmathsetmacro{\a}{\textwidth/2}
\path (0,0); % move pen to (0,0) left most of the text
\path[every node/.style={star,draw,fill=magenta,star point ratio=2.5,scale=.5}]
(\a pt,0) node{}--+(0:1) node{}--+(180:1) node{};
\end{tikzpicture}
\vspace*{5mm}
\lipsum[1-1]
\end{document}
答案3
该类memoir
提供了文档中的多种匿名分隔符(无数字、无标题文本)。
\plainbreak{<num>} % insert <num> blank lines
\fancybreak{<text>} % insert <text>
% e.g., \fancybreak{{*}\\{* * *}\\{*}} % insert a diamond shape made of asterisks
\plainfancybreak{<space>}{<num>}{<text>} % insert <num> blank lines in the
% midle of a page or <text> if at the top or bottom
有关详细信息,请参阅章节6.7 花哨的匿名突破在手册(> texdoc memoir
)中也提供了一系列有关此类休息的想法。