tectonic-typesetting / tectonic

A modernized, complete, self-contained TeX/LaTeX engine, powered by XeTeX and TeXLive.
https://tectonic-typesetting.github.io/
Other
3.99k stars 162 forks source link

how to create a `🖉` or `🗑` with tectonic #1216

Open LuckyTurtleDev opened 2 months ago

LuckyTurtleDev commented 2 months ago

hi, how can I use unicode char like 🖉, ✖ or 🗑 with tectonic. Since tectonic support utf8 this should be possible. But i get only a image symbol at latex. I think this probably because some font is missing for this chars.

Currently I am using the following font cofiguration:

\usepackage{fontspec}
\usepackage{noto}
\usepackage{sourceserifpro}
\usepackage{sourcecodepro}
\setromanfont{SourceSerifPro}[
    Extension      = .otf,
    UprightFont    = *-Regular,
    BoldFont       = *-Bold,
    ItalicFont     = *-RegularIt,
    BoldItalicFont = *-BoldIt]

\setsansfont{NotoSans}[
    Extension      = .ttf,
    UprightFont    = *-Regular,
    BoldFont       = *-Bold,
    ItalicFont     = *-Italic,
    BoldItalicFont = *-BoldItalic]

\setmonofont{SourceCodePro}[
    Extension      = .otf,
    UprightFont    = *-Regular,
    BoldFont       = *-Bold,
    ItalicFont     = *-RegularIt,
    BoldItalicFont = *-BoldIt]

Which font did I need to include?