有没有办法将 TeX.SE 中的符号复制到我的书头中?

有没有办法将 TeX.SE 中的符号复制到我的书头中?

我指的是 TEX 下面的一个:

在此处输入图片描述

分数维:

\documentclass[11pt]{book}
\RequirePackage{luatex85}
\usepackage[paperwidth=142mm, paperheight=210mm,top=25mm, bottom=20mm, left=17mm, right=22mm]{geometry}
\usepackage{fancyhdr}
\usepackage{fourier-orns}

\pagestyle{fancy}
\fancyhead{}
\renewcommand\headrule{\hrulefill
\raisebox{-2.1pt}[10pt][10pt]{\quad\decofourleft\decotwo\decofourright\quad}\hrulefill}
\setlength{\headheight}{24.7pt}

\begin{document}

Some text.

\end{document}

答案1

您可以从https://cdn.sstatic.net/Sites/tex/img/sprites-extra.svg?v=f1f65415ba47

我使用 Inkscape 清理周围的线条并将其转换为 .pdf,然后可以简单地将其作为图像包含:

\documentclass[11pt]{book}
\RequirePackage{luatex85}
\usepackage[paperwidth=142mm, paperheight=210mm,top=25mm, bottom=20mm, left=17mm, right=22mm]{geometry}
\usepackage{fancyhdr}
\usepackage{fourier-orns}
\usepackage{graphicx}

\pagestyle{fancy}
\fancyhead{}
\renewcommand\headrule{\hrulefill
\raisebox{-7pt}[10pt][10pt]{\quad\includegraphics[width=1cm]{sprites-extra}\quad}\hrulefill}
\setlength{\headheight}{24.7pt}

\begin{document}

Some text.

\end{document}

在此处输入图片描述

相关内容