Skip to content

Commit

Permalink
Add list of figures, list of tables and appendix (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
IMichael-ops authored Sep 26, 2023
1 parent 9c95fc4 commit a2602f5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions thesis_template.typ
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,27 @@

body

// List of figures.
pagebreak()
heading(numbering: none)[List of Figures]
outline(
title:"",
target: figure.where(kind: image),
)

// List of tables.
pagebreak()
heading(numbering: none)[List of Tables]
outline(
title: "",
target: figure.where(kind: table)
)

// Appendix.
pagebreak()
heading(numbering: none)[Appendix A: Supplementary Material]
include("thesis_typ/appendix.typ")

pagebreak()
bibliography("thesis.bib")
}
1 change: 1 addition & 0 deletions thesis_typ/appendix.typ
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- Supplementary Material --

0 comments on commit a2602f5

Please sign in to comment.