下图所示的是所需的简单头部规则,但规则宽度应该更细,就像这样1pt
。
真实版:
那么如何使用Tikz
或其他包来绘制这种线headrule
?
或者,假设我有 PDF 格式的矢量图,例如head-rule.pdf
,我该如何将其包含在 head-rule 中使用?
答案1
这是上述规则,tikz
中心点设置为 1 pt。在更新版本中,我填充了它们,并将它们延长到略大于\textwidth
。您可以调整我除以的数字\textwidth
以缩短或延长它。请注意,使用\fill
和\draw
命令一起使用时效果会更好。如果没有后者,边缘会不够清晰。[抱歉更新延迟。我当时正在从暴风雪中挖出东西。]
\begin{tikzpicture}
\fill (0,0) circle (1pt);
\draw (0.2,0) .. controls (0.2,0.075) and (1,0) .. (\textwidth/2,0);
\fill (0.2,0) .. controls (0.2,0.075) and (1,0) .. (\textwidth/2,0);
\draw (0.2,0) .. controls (0.2,-0.075) and (1,0) .. (\textwidth/2,0);
\fill (0.2,0) .. controls (0.2,-0.075) and (1,0) .. (\textwidth/2,0);
\draw (-0.2,0) .. controls (-0.2,0.075) and (-1,0) .. (-\textwidth/2,0);
\fill (-0.2,0) .. controls (-0.2,0.075) and (-1,0) .. (-\textwidth/2,0);
\draw (-0.2,0) .. controls (-0.2,-0.075) and (-1,0) .. (-\textwidth/2,0);
\fill (-0.2,0) .. controls (-0.2,-0.075) and (-1,0) .. (-\textwidth/2,0);
\end{tikzpicture}
要使用此功能,fancyhdr
只需将上述代码放入\chead{}
您的序言中。
输出如下: