使用包时未找到 TeXStudio XeLaTeX 字体,可在其他计算机上使用

使用包时未找到 TeXStudio XeLaTeX 字体,可在其他计算机上使用

编辑:如果有人遇到同样的问题,我最终删除了我的编辑器以及 TexLive,并安装了 MikTex。解决了这个问题。

我正在使用XeLaTex并希望使用该包查里斯显示 IPA 字符。

\usepackage{CharisSIL}

在我的计算机上,我总是收到以下错误:

未找到文件“CharisSIL.sty”。 \usepackage

如果我在另一台计算机上使用相同的文档,则文档可以顺利编译。请注意,我手动安装了字体,但问题并未解决(并且字体未安装在运行它的计算机上)。

编辑:

序言.tex

\documentclass[a4paper,12pt]{article}

\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}

\usepackage{CharisSIL}
% Line Spacing 1.0
\usepackage[nodisplayskipstretch]{setspace}
%(1.0*2355/2048)/(14.5/12) = 0.95164331896
\setstretch{1}
% Margins = 2.5cm
\usepackage[margin=2.5cm]{geometry}
%\usepackage[adobe-utopia]{mathdesign}
\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    linkcolor=black,
    filecolor=black,      
    urlcolor=gray,
    citecolor=gray,
}

主文本

\input{preamble}

\begin{document}
    
    \input{titlepage}
    
    \pagenumbering{roman}
    \pagestyle{plain}
    \tableofcontents
    
    \input{intro}
    \input{prob}
    \input{etat}
    \input{sources}
    \input{metho}
    \input{calendrier}
    
    \printbibliography[heading=bibintoc,title={References}]
    \thispagestyle{plain}
    
    %\bibliography{bib} 
    %\bibliographystyle{apacite}
    
    \nocite{*}
    
\end{document}

相关内容