项目作者: emojifreak

项目描述 :
Generate all emoji by luatex in Segoe UI Emoji, Noto Color Emoji and Twemoji Mozilla
高级语言: TeX
项目地址: git://github.com/emojifreak/All-Emoji-by-LuaTeX.git
创建时间: 2019-08-27T22:13:01Z
项目社区:https://github.com/emojifreak/All-Emoji-by-LuaTeX

开源协议:The Unlicense

下载


LaTeX files listing all emoji in Unicode 13.0 by lualatex-dev + luaotfload.sty 3.12 in TeXLive 2019 final.
Note that TeXLive 2019 final and TeXLive 2020 include Noto Color Emoji and Twitter Emoji.
BXcoloremoji.sty is also needed for compilation.

One can easily use emoji in a presentation by LuaLaTeX like the below. LuaLaTeX can handle color fonts with RawFeature={+colr}

  1. \RequirePackage[TU]{fontenc}
  2. \RequirePackage{fix-cm}
  3. \RequirePackage{lmodern}
  4. \documentclass[luatex,unicode]{beamer}
  5. \usepackage{fontspec}
  6. \setsansfont{Segoe UI Emoji}[
  7. RawFeature={+colr;+dist;+ccmp},
  8. BoldFont={Segoe UI Bold},
  9. ItalicFont={Segoe UI Italic},
  10. BoldItalicFont={Segoe UI Bold Italic}]
  11. \usetheme{Madrid}
  12. \begin{document}
  13. \begin{frame}{Test😃}
  14. Test👍\\
  15. \textbf{Test}👌\\
  16. \textit{Test}💕
  17. \end{frame}
  18. \end{document}