|
86鱼 发来图:
想用 LaTeX 打出来,需要先找到三个 emoji 的高清素材,86鱼 提供了以下三个链接:
unicode-table.com/cn/1F605/
unicode-table.com/cn/1F604/
unicode-table.com/cn/1F4A7/
下载那三个表情,分别命名为 lhhd.png、hd.png、lh.png,然后用以下代码:- \documentclass{article}
- \usepackage{graphicx}
- \newcommand\icg[1]{$\vcenter{\hbox{\includegraphics[width=1.2em]{#1}}}$}
- \newsavebox\lhhdbox
- \newsavebox\hdbox
- \newsavebox\lhbox
- \sbox\lhhdbox{\icg{lhhd.png}}
- \sbox\hdbox{\icg{hd.png}}
- \sbox\lhbox{\icg{lh.png}}
- \newcommand\lhhd{\usebox\lhhdbox}
- \newcommand\hd{\usebox\hdbox}
- \newcommand\lh{\usebox\lhbox}
- \newcommand\rmd{\mathop{}\!\mathrm{d}}
- \begin{document}
- \[\rmd(\lhhd)=\lhhd\ln(\hd)\rmd\lh\]
- \end{document}
Copy the Code 把三个图放到该 tex 目录下,运行即得:
|
|