I'd like to know why and if someone knows a solution about saving pdf + latex gives the wrong path to the tex file.
So for instance:
If I save an svg inside mainfolder/subfolder as pdf with omit text.. Latex, it will save the \input..{filename.pdf_tex} without the subfolder, so instead of saving it as \input..{subfolder/filename.pdf_tex}.
That leaves me adding the subfolder every time, manually. Is there a solution for this?
\input@path. Add something like\makeatletter \providecommand*{\input@path}{} \g@addto@macro\input@path{{subfolder//}} \makeatotherto your preamble – samcarter_is_at_topanswers.xyz Apr 13 '18 at 21:31export TEXINPUTS=.:/home/path/to/the/subfolder//:in the terminal. This will change it for the current terminal session. If it works, you could permanently adjust it by adding it to your.profileor.bash_rcor.bash_profile(whichever you are using...) – samcarter_is_at_topanswers.xyz Apr 13 '18 at 21:41:.//it will search all subfolders of your current folder – samcarter_is_at_topanswers.xyz Apr 14 '18 at 12:14