更改baposter包中的字體

更改baposter包中的字體

我嘗試使用以下程式碼將 bposter.cls 中的字體變更為 Garamond:

\usepackage{bm}  % bold stuff 
\usepackage{bbm} % bold stuff
\usepackage{fontspec}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond}

\defaultfontfeatures{Renderer=Basic,Ligatures=TeX}
\setmainfont[
 Path           = garamond/,
 BoldFont       = Garamond.ttf,
 ItalicFont     = GARAIT.TTF,
 BoldItalicFont = garmndmi.ttf]
 {GARAM.ttf}
\setmonofont[
 Scale          = 0.9,
 Path           = garamond/,
 BoldFont       = Garamond.ttf,
 ItalicFont     = GARAIT.ttf,
 BoldItalicFont = garmndmi.ttf]
 {GARAM.ttf} 

我從那裡得到了字體這裡。我不確定我做錯了什麼,因為我是 baposter 的新手。

答案1

這些ebgaramond字體是 TeX Live 的一部分,只需載入ebgaramond套件即可找到。fontenc使用 LuaLaTeX 或 XeLaTeX 時不應載入該套件;只需加載fontspec

相關內容