I'd like to be able to temporarily ignore my "home" texmf tree (in MacTeX /Users/will/Library/texmf) for testing purposes; e.g., to test some code and ensure only TeX Live-installed packages are found. Is this easily possible?
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
|
||||
| show 2 more comments |
|
This is a bit long for a comment, and the formatting would be restrictive. Here's what happens on my (Linux) system:
So the one that works reliably is to set |
|||||
|
|
My approach is to use a directory other than the default directory for the personal
|
|||||
|
mv texmf texmf-something-elsebe acceptable? – Andrew Stacey Sep 8 '11 at 7:10mv ~/texmf ~/texmf_) :-). However, maybe usingexport TEXMFHOME=""will overwrite the internal definition of TEXMFHOME? – Martin Scharrer♦ Sep 8 '11 at 7:13/Users/will/Library/texmf. Then you can manipulate that link whenever you want to disable TEXMFHOME. This might be somewhat safer than usingmv. Also you could create a script that when invoked if the TEXMFHOME is enabled disables it, and if it's disables, enables it. – N.N. Sep 8 '11 at 7:13unset TEXMFHOME– Herbert Sep 8 '11 at 7:22export TEXMFHOME=$HOME/a-nonexistant-directoryworks. – Andrew Stacey Sep 8 '11 at 7:22