I have file structure that looks like this:
images/
1.png
2.png
3.png
photos/
1.jpg
2.jpg
3.jpg
self/
chapter1.tex
chapter2.tex
chapter3.tex
copied/
chapter1.tex
chapter2.tex
chapter3.tex
main.tex
(and few other files, but that's not important here).
Now I want to include those images and chapters inside main.tex, however I have a lot more than just 3 and I have been wondering if there is a way to specify default location to look into. As I am using graphix package, i have \graphicspath{{images/}{photos/}} for images, but is there something similar for content files as well?
EDIT: Change file structure to have content files divided into multiple folders
\graphicspathI can specify more folders. Is there a way around that? – Redstone Tehnik Sep 26 '17 at 15:31\newcommand\myinput[2][content]{\input{#1/#2}}and then use\myinput{chapter1.tex}or\myinput[content/extracont]{extra.tex}– koleygr Sep 26 '17 at 15:51