I have a number of files that I include in various latex documents (using \include). I thought the best way to keep them in one location would be to put them in a directory under ~/Library/texmf. If I put it right under texmf (~/Library/texmf/Common_stuff) they are not found (even after running texhash). If I put them under ~/Library/texmf/tex/latex it complains that it cannot write the .aux files in that directory. Is there a way of making this work? I am using texlive.
Thanks.
\input, not\include. – egreg May 08 '15 at 13:20\includeonlyso\inputwon't work. I don't think that is the problem I am trying to solve anyway --\inputwill give the same error. – ozsu May 08 '15 at 13:26\includeyou should just use the file name (not the full path) then the aux files will be written to the current directory. – David Carlisle May 08 '15 at 13:36