Input file folder

The following is written to accord to Mac OS Xs' FHS implementation. This is principally valid for any UNIX-like OS. Pdflatex allows you to specify complete paths:

\input{/Users/user_name/some/path}

Under Unix-Like systems you may even use shell(bash) variables in you paths:

\input{$HOME/some/path}

or common abbreviations

\intput{\string~/some/path}

(note: using \string here to tell latex to pass the character to shell instead of taking the "meaning")

Of course you may also specify relative paths. This means of course you need to know what your active path is. For pdflatex this is most commonly the path (or directory) were yout main document lies (which is given pdflatex as an argument).

\input{some_file}

This will tell pdflatex to use some_file which is located in the active dir. (If not an error will be raised.)

\input{./some_file}

Will do exactly the same, while

\input{../some_file}

will tell pdflatex to use some_file which lies in the parent folder (one level above.)

So one might ask why? Well under common OSs like UNIX or Windows the dot representations are in charge, so that . represents the current/active folder and .. the parent. Therefore ../../ will represent a folder two levels above (the parent of the parent). This is possible, since the directory tree only knows one parent a a certain level. So 'going up' is all the same on any level.


You can define the input files as follows:

\makeatletter
\def\input@path{{/path/folder/}}
\makeatother

in the case of several directories you can use

\makeatletter
\def\input@path{{/path/folder1/}{/path/folder2/}}
\makeatother

Tags:

Input