最接近小丑图片的乳胶符号是什么?我在网站上搜索了“小丑”,但只找到了格式化现有小丑图片的参考资料。出于显而易见的原因,“detexify”在这里也无济于事。
答案1
如果您使用LuaLaTeX
或XeLaTeX
,则可以使用黑白表情符号字体中的小丑 Unicode 符号 (U+1f921):
\documentclass{scrartcl}
\usepackage{fontspec}
\newfontface\emojifont{Segoe UI Emoji}
\begin{document}
{\emojifont^^^^^^01f921}
\end{document}
Segoe UI Emoji
是 Windows 表情符号字体。在类 UNIX 系统上,Symbola
通常会安装或可以安装该字体:
\documentclass{scrartcl}
\usepackage{fontspec}
\newfontface\emojifont{Symbola}
\begin{document}
{\emojifont^^^^^^01f921}
\end{document}
答案2
应大众要求,从评论部分添加了小丑。
编辑以添加颜色。
\documentclass{article}
\usepackage{stackengine,graphicx,scalerel,xcolor}
\setstackEOL{\\}
\setstackgap{S}{1pt}
\newcommand\Bullet{\textcolor{red}{$\bullet$}}
\newcommand\Wedge{\textcolor{blue}{$\wedge$}}
\begin{document}
Sad clown:
\scalerel*{\Shortstack{\Wedge\\\\oo\\\Bullet\\\rotatebox{90}{)}}}{Xg}
Happy clown:
\scalerel*{\Shortstack{\Wedge\\\\oo\\\Bullet\\\rotatebox{90}{(}}}{Xg}
Surprised clown:
\scalerel*{\Shortstack{\Wedge\\\\oo\\\Bullet\\\rotatebox{90}{0}}}{Xg}
Too cool for school:
\scalerel*{\Shortstack{\Wedge\\
\scalebox{1.4}{$\bullet\makebox[0pt][c]{$-$}\bullet$}\\\Bullet\\---}}{Xg}
Sleeping clown:
\scalerel*{\Shortstack{\Wedge\\\\-{}-\\\Bullet\\\rotatebox{90}{(}}}{Xg}
Clownthulhu: \scalerel*{\Shortstack{\Wedge\\\\\scriptsize oo\\\Bullet\\\scalebox{.16}[.75]{$\sqcup\mkern1mu\sqcup\mkern1mu\sqcup\mkern1mu\sqcup$}}}{Xg}
\end{document}
答案3
\documentclass{standalone}
\usepackage{tikzducks}
\begin{document}
\begin{tikzpicture}
\duck[magichat,bill=red]
\end{tikzpicture}
\end{document}
随着tikzducks
软件包的开发版本现在可以画一只丑角鸭了:
\documentclass{standalone}
\usepackage{tikzducks}
\begin{document}
\begin{tikzpicture}
\duck[harlequin,jacket=red,stripes={\stripes[color=blue, width=0.46, distance=3]}]
\end{tikzpicture}
\end{document}