I have a number of folders in which my figures are located. For e.g.
./chapter_1/figures/
./chapter_2/figures/
...
./chapter_n/figures/
To deal with this, in my preamble I declare
Code: Select all
\usepackage{graphicx}
\graphicspath{{chapter_1/figures/}
{chapter_2/figures/}{chapter_3/figures/}chapter_4/figures/}
{chapter_5/figures/}}
Code: Select all
\includegraphics[filename.eps]
Can I do something with my tikz images? I have some files (say tikzfile.tex) which have script for tikz diagrams which begin and end with
Code: Select all
\begin{tikzpicture}
CODE for figure
\end{tikzpicture}
Code: Select all
\begin{figure}
\input{chapter_1/latex_figures/tikzfile.tex}
\end{figure}
Thanks