I’m working on a template and I have an #include-files() function that would take a list of files and then just #input them inside the template. Specifically to have correct custom footer and page numbering on these “preface” files before primary contents. And then followed by main body etc.
Structure:
Template
Frontpage
Preface pages (parsed as paths)
Paper
My problem is:
I’m testing this on local and the root is always my package src folder instead of my personal project folder because it’s my src/main.typ that essentially call the input I presume. But I can’t seem to figure out despite some similar issues or posts touching on similar subjects, how to get the correct path to be parsed.
And it works fine if not ran as part of a package but just ran as part of my project. Utilizing having prefixed “/” in paths to reference root of project
File paths such as /sections/preface/preface.typ" are always relative to where they are used:
// a.typ
#let my-include(path) = include path
// b.typ
#import "@local/test-template:0.1.0": my-include
#include "foo.typ" // relative to b.typ
#my-include("foo.typ") // relative to a.typ
in your case, that means your (absolute) paths would be relative to (the package containing) functions.typ. The way around this is to not pass paths, but content to your template:
before: ( //my list of files to include
preface: include "/sections/preface/preface.typ",
acknowledgement: include "/sections/preface/acknowledgement.typ",
contents: include "/sections/preface/contents.typ",
readers_guide: include "/sections/preface/readers_guide.typ",
),
Eventually, there should be a distinct path type that lets you pass paths to other places, while retaining what they’re relative to, but this doesn’t exist yet. You can read more on the topic here: