includegraphics: Fehlermeldung bei Nutzung von \input und Unterordner Struktur
Ordnerstruktur
.../Projekt/main.tex
.../Projekt/content/Chap1/chap1.tex
.../Projekt/content/Chap1/bild.jpeg
`main.tex`
\documentclass{article}%
\begin{document}
\input{content/Chap1/chap1.tex}
\end{document}
`chap1.tex`
`chap1.tex` (keinen weiteren Pfad gesetzt, da `.jpeg` im gleichen Ordner ist wie `chap1.tex`)
\begin{figure}
\includegraphics{bild}
\end{figure}
Fehlermeldung
! LaTeX Error: File `bild' not found.
Was läuft schief?