Estou tentando compilar e gerar pdf para meu projeto de tese em látex. Abaixo está a estrutura do projeto:
|-tex
|--thesis
|---packages
|----color.sty
|---common
|----lang.sty
|---thesis.tex
|---thesis.cls
Estou usando os arquivos .sty no arquivo thesis.cls, mas estou recebendo o erro "...sty File not found". Fazendo algumas pesquisas, tentei definir a seguinte variável env:
export TEXINPUTS=.:./tex/thesis/common/:./tex/thesis/packages/
Mas ainda dá o mesmo erro. O que estou perdendo aqui. (Estou usando OSX, daí o :
separador)
Erro:
! 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
código de classe que está invocando os arquivos sty e falhando aqui:
\LoadClassWithOptions{report}
\RequirePackage{lang}. <--- Fails here
\RequirePackage{color}
.....