라텍스로 논문 프로젝트를 위해 PDF를 컴파일하고 생성하려고 합니다. 아래는 프로젝트 구조입니다.
|-tex
|--thesis
|---packages
|----color.sty
|---common
|----lang.sty
|---thesis.tex
|---thesis.cls
thesis.cls 파일에서 .sty 파일을 사용하고 있는데 "...sty 파일을 찾을 수 없음" 오류가 발생합니다. 몇 가지 조사를 하면서 다음 env 변수 설정을 시도했습니다.
export TEXINPUTS=.:./tex/thesis/common/:./tex/thesis/packages/
하지만 여전히 동일한 오류가 발생합니다. 내가 여기서 무엇을 놓치고 있습니까? (저는 OSX를 사용하고 있으므로 :
구분 기호를 사용합니다)
오류:
! LaTeX Error: File `lang.sty' not found.
Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)
Enter file name:
./thesis.cls:68: Emergency stop.
<read *>
thesis.cls
sty 파일을 호출하고 여기서 실패하는 클래스 코드:
\LoadClassWithOptions{report}
\RequirePackage{lang}. <--- Fails here
\RequirePackage{color}
.....