I have a fairly large document, that I have picked apart into different sections etc, each in their own file. To include graphics that are not in one central directory I use \graphicspath which works quite nicely. Is there a similar command I could use to include tex files from multiple directories without me explicitly naming them?
The idea would be the following:
\graphicspath{{./Some/Directory/For/Figures1/},{./Some/Directory/For/Figures2/}}
\texpath{{./Some/Directory/For/Tex/Files1/},{./Some/Directory/For/Tex/Files2/}}
The I would like to call within the document:
\includegraphics{fig_from_Figures1}% this works
\includegraphics{fig_from_Figures2}
\input{doc_from_Files1}% this would be awesome
\input{doc_from_Files2}