在 TikZ 中模仿“LaTeX 字体箭头”

在 TikZ 中模仿“LaTeX 字体箭头”

是否可以让 TikZ 识别当前文档中使用的 LaTeX 字体并(通过定义适当的“模仿样式”)让其自动绘制具有“相同”形状的箭头?

梅威瑟:

\documentclass[border=10pt]{standalone}
\usepackage{tikz,fourier}
\begin{document}
\tikz{\draw [->] (0,0) -- (1,0);}
$\rightarrow$
\end{document}

Ti 如何仅给定当前字体配置,Z 箭头是否可以匹配?

不匹配

答案1

正如我所评论的,请参阅手册了解更多信息

\documentclass[border=10pt]{standalone}
\usepackage{tikz-cd,fourier}
\begin{document}

\tikzset{
    fourier to/.tip={Glyph[glyph math command=rightarrow]},
    fourier notowns/.tip={Glyph[glyph math command=notowns]},
}

\tikz[line width=.53pt]\draw[fourier notowns-fourier to](0,0)to[bend right](1,0);

\end{document}

相关内容