···11+#import "@preview/illc-mol-thesis:0.2.0": *
22+33+#mol-chapter("Introduction")
44+55+#lorem(100)
66+77+== Background <background>
88+99+#lorem(75)
1010+1111+== Literature
1212+1313+We use standard results from @netwok2020. Also relevant for our work is
1414+@netwok2020, where it was proven that Logic is great.
1515+1616+#lorem(800)
1717+1818+== Criticism
1919+2020+#lorem(150)
2121+2222+#load-bib(read("refs.bib"))
+25
2-my-logic.typ
···11+#import "@preview/illc-mol-thesis:0.2.0": *
22+33+#mol-chapter("My Logic")
44+55+#lorem(100)
66+77+== Syntax
88+99+#definition[
1010+ We defined the language $cal(L)$ as follows:
1111+1212+ $ phi.alt ::= top | p | phi.alt and phi.alt $
1313+]
1414+1515+#lorem(50)
1616+1717+== Semantics
1818+1919+== Axioms
2020+2121+== Soundness
2222+2323+== Completeness
2424+2525+#load-bib(read("refs.bib"))
+37
3-examples.typ
···11+#import "@preview/illc-mol-thesis:0.2.0": *
22+33+#mol-chapter("Examples")
44+55+== Figures
66+77+We illustrate the protagonist of this thesis. in @netwok2022.
88+99+#figure(caption: "The protagonist.", numbering: "1.1")[
1010+ #emoji.person
1111+]<protagonist>
1212+1313+== Tables
1414+1515+In @cities we compare some cities.
1616+1717+#figure(caption: "An overview of cities.")[
1818+ #table(
1919+ columns: 3,
2020+ stroke: (x, y) => if x == 0 { (right: black) },
2121+ table.hline(),
2222+ table.header([City],[Population],[area ($"km"^2$)]),
2323+ table.hline(),
2424+ [Amsterdam],[851573],[219],
2525+ [Groningen],[200952],[ 83],
2626+ [Utrecht ],[321989],[100],
2727+ table.hline()
2828+ )
2929+]<cities>
3030+3131+#mol-chapter("Conclusions")
3232+3333+As we discussed in @netwok2020, Logic is great.
3434+3535+#lorem(400)
3636+3737+#load-bib(read("refs.bib"))
+19
refs.bib
···11+@article{netwok2020,
22+ title={At-scale impact of the {Net Wok}: A culinarically holistic investigation of distributed dumplings},
33+ author={Astley, Rick and Morris, Linda},
44+ journal={Armenian Journal of Proceedings},
55+ volume={61},
66+ pages={192--219},
77+ year=2020,
88+ publisher={Automatic Publishing Inc.}
99+}
1010+1111+@article{netwok2022,
1212+ title={{Net Wok}++: Taking distributed dumplings to the cloud},
1313+ author={Morris, Linda and Astley, Rick},
1414+ journal={Armenian Journal of Proceedings},
1515+ volume={65},
1616+ pages={101--118},
1717+ year=2022,
1818+ publisher={Automatic Publishing Inc.}
1919+}
thesis.pdf
This is a binary file and will not be displayed.
+34
thesis.typ
···11+#import "@preview/illc-mol-thesis:0.2.0": *
22+33+#show: mol-thesis
44+55+#mol-titlepage(
66+ title: "Title of the Thesis",
77+ author: "John Q. Public",
88+ birth-date: "April 1st, 1980",
99+ birth-place: "Alice Springs, Australia",
1010+ defence-date: "August 28, 2005",
1111+ /* Only one supervisor? The singleton array ("Dr Jack Smith",) needs the
1212+ trailing comma. */
1313+ supervisors: ("Dr Jack Smith", "Prof Dr Jane Williams"),
1414+ committee: (
1515+ "Dr Jack Smith",
1616+ "Prof Dr Jane Williams",
1717+ "Dr Jill Jones",
1818+ "Dr Albert Heijn"),
1919+ degree: "MSc in Logic"
2020+)
2121+2222+#mol-abstract[
2323+ ABSTRACT OF THE THESIS
2424+2525+ #lorem(150)
2626+]
2727+2828+#outline()
2929+#include "1-introduction.typ"
3030+#include "2-my-logic.typ"
3131+#include "3-examples.typ"
3232+#pagebreak()
3333+3434+#load-bib(read("refs.bib"), main: true)