如何编译在 main.tex 中应用自定义字体的子文件

如何编译在 main.tex 中应用自定义字体的子文件

我有如下项目结构..

\documentclass[a4,twoside,11pt]{report}

\usepackage{subfiles} 
\graphicspath{{images/}{../images/}}

\usepackage{fontspec} 
\setmainfont[AutoFakeBold=0.5, AutoFakeSlant=0.4]{AdaniRegular.ttf} % font loaded in project

\begin{document}

\chapter{LV network planning }
\subfile{Sections/LVnetwork.tex}


\chapter{Service network planning}\label{Ch1}
\subfile{Sections/ServiceNetwork.tex}

\end{document}

我无法用 Adani 字体编译单个子文件。我正在使用 overleaf

相关内容