未找到控制包

未找到控制包

我想控制 LaTeXError File fictitiuspack.sty not found例如, 。這是一個 MWE

\documentclass{article} 
\usepackage{fictitiuspack}
\begin{document}
     Hello world
\end{document}

當然,fictitiuspack.sty是不存在的。如果我編譯 MWE,我會得到

! LaTeX Error: File `fictitiuspack.sty' not found.

Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)

Enter file name: X

在這個錯誤發生之前可以控制這個錯誤嗎?例如,如果我可以控制,我可以寫:

ifnonexist{\usepackage{goodpackage}}

答案1

你的意思是像

\IfFileExists{packageA.sty}{\usepackage{packageA}}{\usepackage{packageB}}

相關內容