diff --git a/src/main.typ b/src/main.typ index 1e3ed5b..3218011 100644 --- a/src/main.typ +++ b/src/main.typ @@ -138,3 +138,5 @@ // ------------------------------------------ #include "content/bibliography.typ" + +#include "pages/appendix.typ" \ No newline at end of file diff --git a/src/pages/appendix.typ b/src/pages/appendix.typ new file mode 100644 index 0000000..85938fd --- /dev/null +++ b/src/pages/appendix.typ @@ -0,0 +1,28 @@ + +// ------------------------------------------ +// Appendix setup +// ------------------------------------------ + +#set heading(numbering: none) + += Appendix + +#set heading(numbering: "A.1") + +// reset page counter +#counter(heading).update(1) + +// ------------------------------------------ +// Put your appendencies here and link them +// to correclty reference them in the document +// ------------------------------------------ + +// Example: +// +// == Appendix title +// +// +// Some appendix content goes here + +// Then reference with in the document: +// @appendix-section-link-name \ No newline at end of file