LaTeX 中的这个符号是什么?我在哪里可以找到它?

LaTeX 中的这个符号是什么?我在哪里可以找到它?

我指的是书中不时出现的这个符号,用于将章节的前几个段落与其余部分分隔开。

enter image description here

答案1

很难判断你的花饰的规模,但你可以用 Ti 设计类似的东西Zcalligraphy库。

在下面的代码中,\pen命令定义了“书法笔”的角度(30°)和宽度(2mm)。除了使用定义的笔外,该\calligraphy命令的工作方式与\draw此类似。您可以随意调整设计。

enter image description here

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{calligraphy}

\begin{document}

\begin{tikzpicture}
\pen (0,0) -- (30:.2);
\calligraphy (0,0) to[out=30, in=210] ++(2,0)
            (30:.25)to[out=30, in=210] ++(2,0);
\end{tikzpicture}

\end{document}

您可能希望将其放入宏中,以便在整个书中重复使用它。您可以调整上下间距。

enter image description here

改变scale因子来调整尺寸。

\documentclass{article}

\usepackage{tikz, lipsum}
\usetikzlibrary{calligraphy}

\newcommand{\myfleuron}{\vspace{5mm}% <-- additional space above
    {\centering
    \tikz[baseline=-.68ex, scale=.15] % <-- adjust size of fleuron here]
    {\pen (0,0) -- (30:.2);
    \calligraphy (-1,0) to[out=30, in=210] ++(2,0)([xshift=-1cm]30:.25)to[out=30, in=210] ++(2,0);}
    \par}\vspace{5mm}% <-- additional space below
}

\begin{document}

\lipsum[2]

\myfleuron

\lipsum[3]

\end{document}

答案2

我仅使用 PDF 原始操作来创建符号。\pdfliteral使用来自 pdftex 的原始操作。我们不需要 TikZ。

The symbol: \pdfliteral{q 1 0 0 .8 5 0 cm
   0 0 m 20 10 40 10 50 0 c 60 -10 80 -10 90 -5 c
   70 -15 50 -12 40 0 c 30 12 15 5 0 0 c h f
   .8 0 0 1 -5 -3 cm
   0 0 m 20 10 40 10 50 0 c 60 -10 80 -10 90 -10 c
   70 -15 50 -12 40 0 c 30 12 15 5 0 0 c h f
Q}

\bye

listecky

相关内容