我在 Windows 10 上使用 TeXLive 2023 和 VSCode。有时一切正常,但最近出现了问题。有时文件编译变得非常慢。通过 latexmk 命令,可以看到文件的编译进度卡在名为 bk10.clo 的文件上。修复它的唯一方法是卸载 TexLive 并重新安装它。
发生这种情况时,我尝试编译一个只有 100 页的文件,通常需要 14 到 15 秒才能编译完成,而实际却花费了 2 分多钟。
'pdflatex': time = 64.00
'makeindex main.idx': time = 0.33
'pdflatex': time = 62.36
Processing time = 127.48
Number of rules run = 3
之后我尝试编写一个只有标题的空文档,这也花了将近2分钟。
Latexmk: All targets () are up-to-date
'pdflatex': time = 56.80
'makeindex main.idx': time = 0.35
'pdflatex': time = 56.38
Processing time = 114.15
Number of rules run = 3
我真的很想知道发生了什么,如能提供任何帮助我将不胜感激!
MWE 在此处更新:
\PassOptionsToPackage{no-math}{fontspec}
\documentclass{ctexbook}
\RequirePackage{fontspec}
\setmainfont{Minion Pro}
\setCJKmainfont[BoldFont=Source Han Sans CN Medium, ItalicFont=STKaiti]{Source Han Serif SC}
\RequirePackage{textcomp}
\begin{document}
This is a test.
\end{document}