예를 들어 LaTeX를 제어하고 싶습니다 Error 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}}