Changes between Version 12 and Version 13 of WikiStart


Ignore:
Timestamp:
Feb 28, 2007, 12:17:49 AM (17 years ago)
Author:
ulrich
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v12 v13  
    3030   * file properties (owner, executable, special...)
    3131   * seperate exclude list
     32
     33= Notes =
     34
     35== Tex Include Directories ==
     36
     37You may want every user on the system to be able to use tex packages without downloading them seperatedly or just save the time searching the same packages multiple times. The solution is to extend the tex search path. I did that for all users on my system by adding following line to the bash configuration file /etc/bash.bashrc.
     38{{{
     39export TEXINPUTS=".:/usr/local/share/latex//:"
     40}}}
     41The doubled slash at the end of the path causes tex to recursively check this directory for searched packages.
     42Click [http://myitcv.org.uk/latex/tips_and_tricks.html#answer9 here] for more information.
     43
     44Other shells may require other commands. Use appropriate permissions for that folder like owner root may write, everyone else just read.