In **LaTeX,** you have to use UNIX-style paths. They are separated by a forward slash: `path/to/file`. We will use those from here on.
@preview  @slide(layout=content-and-preview-with-category) @category Excursion @title Specifying file paths 👣 @content`main-exercises.tex` → `praeamble.tex`
::: {.fragment} `./praeamble.tex` A **single dot ‘`.`’** represents the current folder (in this case: `latex-script`). It is optional, you could also write `praeamble.tex` here. ::: @preview  @slide(layout=content-and-preview-with-category) @category Excursion @title Specifying file paths 👣 @content`main-exercises.tex` → `basic-document-structure.tex` (in a subfolder)
./content/basic-document-structure.tex@preview  @slide(layout=content-and-preview-with-category) @category Excursion @title Specifying file paths 👣 @content
`basic-functionality.tex` → `graphics.raw.tex`
(`basic-functionality.tex` is imported into `main-exercises.tex`) ::: {.fragment} `./exercises/graphics/graphics.raw.tex`Paths are always relative to the root document that imports other files as fragments.
::: @preview  @slide(layout=content-only) @title Note @content + From now on, we will compile the file `main-exercises.tex` in the project root. + To do so, right click on the file in TeXstudio and choose **“Select as explicit root document”** from the dropdown. + Next, compile as usual.