如何在 LaTeX 中个性化字体(森林)

如何在 LaTeX 中个性化字体(森林)

我正在使用 Forest 包在 LaTeX 中绘制一个 Stemma Codicum。代码运行完美,但我需要一种特定的字体,即 Garamond Premier Pro。可以使用它吗?如何使用?谢谢

\documentclass[border=0.5cm]{standalone}
\usepackage{forest}
\forestset{
    empty nodes/.style={
    for tree={calign=fixed edge angles}, 
    delay={where content={}{shape=coordinate,
           anchor=north}{}
           },
                            }
            }
\begin{document}
    \begin{forest}
[$\Omega$, empty nodes
    [G, l=5]
    [
        [
            [F, tier=1]
            [
                [P, tier=1]
                    [
                        [D, tier=1]
                        [
                            [R, tier=1]
                                [M, tier=1
                                    [m]
                                    [n]
                                ]
                        ]
                    ]
            ]
        ]
        [
            [S, tier=1]
            [L, tier=1]
        ]
    ]
]
\end{forest}
\end{document}

相关内容