m

modern-iu-thesis

@preview

Modern Typst thesis template for Indiana University

v0.1.5
MIT
Template

Package Information

Last Updated
Authors
Bo Johnson
Categories
thesis

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/modern-iu-thesis:0.1.5

2. Initialize from template

Create a new project from this template:

typst init @preview/modern-iu-thesis:0.1.5

Version History

0.1.5
c801cd991eb1...
0.1.4
0f6266872906...
0.1.3
c5bf93c365e7...
0.1.2
bfe98ffe2b21...
0.1.1
5e7803ca8b6e...
0.1.0
21d74ed391f6...

modern-iu-thesis

IU thesis template in Typst

Simple template which meets thesis and dissertation requirements of IU Bloomington's
Graduate School. This template provides a couple functions:

#show: thesis.with(
    title: [content],
    author: [content],
    dept: [content],
    year: [content],
    month: [content],
    day: [content],
    committee: (
        (
            name: "Person 1",
            title: "Ph.D.",
        ),
    ),
    dedication: [content],
    acknowledgement: [content],
    abstract: [content],
    body-font-size: 11pt,
    caption-font-size: 11pt,
)

and

#iuquote(content)

Everything else follows along with basic Typst syntax such as headings, figures, tables, etc. See
the provided template as an example.

CV

The CV requirement at the end of the thesis/dissertation can be added in the body of your document
by adding something like the following (after the bibliography):

#set page(footer: none)
#set page(margin: 0.6in)
#heading(numbering: none)[Curriculum Vitae] <cv_heading>
#align(center)[#image("cv_full.pdf", page: 1, width: 115%)]
#align(center)[#image("cv_full.pdf", page: 2, width: 115%)]
#align(center)[#image("cv_full.pdf", page: 3, width: 115%)]