我想输入古驰 在 TeX 文档中的数学模式下使用徽标执行此操作的最佳方法是什么?
答案1
我故意强调这不是完美的匹配,因为我不想惹上法律麻烦。然而,这篇文章旨在解释如何做类似该标志的东西。
\documentclass[border=3.14mm,tikz]{standalone}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\draw[line width=4mm] ($(-1,0)+(18:1.8)$) -- ++(0,0.04) arc(18:350:1.85)
-- ++(-0.6,0);
\begin{scope}[xscale=-1]
\draw[line width=4mm] ($(-1,0)+(18:1.8)$) -- ++(0,0.04) arc(18:350:1.85)
-- ++(-0.6,0);
\end{scope}
\end{tikzpicture}
\end{document}
答案2
以下代码是使用我最喜欢的工作流程对于徽标使用维基媒体的 svg。
\documentclass[tikz,border=7pt]{standalone}
\usetikzlibrary{svg.path}
\begin{document}
\begin{tikzpicture}
\fill svg{M 66 -16 c -16 0 -29 -11 -34 -25 h 7 c 4 11 14 19 27 19 c 15 0 28 -12 27 -28 s -12 -28 -27 -28 c -12 0 -22 8 -27 18 h 8 v 7 h -16 c 2 -18 16 -31 35 -31 c 19 0 34 15 34 34 s -15 34 -34 34 z};
\fill svg{M 34 -16 c 16 0 29 -11 34 -25 h -7 c -4 11 -14 19 -27 19 c -15 0 -28 -12 -27 -28 s 12 -28 27 -28 c 12 0 22 8 27 18 h -8 v 7 h 16 c -2 -18 -16 -31 -35 -31 c -19 0 -34 15 -34 34 s 15 34 34 34 z};
\end{tikzpicture}
\end{document}