https://github.com/axect/yonsei-thesis-typst
Thesis/Dissertation typst template for Yonsei University
https://github.com/axect/yonsei-thesis-typst
dissertation thesis typst yonsei-university
Last synced: 28 days ago
JSON representation
Thesis/Dissertation typst template for Yonsei University
- Host: GitHub
- URL: https://github.com/axect/yonsei-thesis-typst
- Owner: Axect
- License: mit
- Created: 2025-03-12T03:36:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-27T06:33:37.000Z (9 months ago)
- Last Synced: 2026-01-30T08:19:30.480Z (about 1 month ago)
- Topics: dissertation, thesis, typst, yonsei-university
- Language: Typst
- Homepage:
- Size: 247 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Yonsei University Thesis Template for Typst
This repository contains a Typst template for creating Yonsei University theses and dissertations, complying with the official formatting guidelines.
## Notice
From 2025-1, you should write your name as "Hong, Gildong" (Family name first) in the thesis. The template is designed to accommodate this change.
## Features
- Complete template for both doctoral dissertations and master's theses
- Pre-configured page layouts and margins according to Yonsei University requirements
- Automatically generated:
- Cover page
- Title page
- Signature page
- Table of contents
- List of figures
- List of tables
- Bibliography support
- Korean abstract page
## Requirements
- [Typst](https://typst.app/) (latest version recommended)
- Times New Roman font
## Usage
1. Clone this repository or download the `thesis.typ` file.
2. Place the file in your project directory.
3. Create your main Typst file (e.g., `main.typ`) and use the template like this:
```typst
#import "thesis.typ": thesis
#show: doc => thesis(
title: "Your Thesis Title",
title_kr: "논문 제목 (한국어)",
author: "Your Name",
degree: "Philosophy",
department: "Your Department",
university: "Yonsei University",
date: "2025",
month: "June",
year: "2025",
supervisor: "Name of Supervisor",
committee: ("Committee Member 1", "Committee Member 2", "Committee Member 3", "Committee Member 4"),
is_doctoral: true, // true for doctoral dissertation, false for master's thesis
doc,
)
= Introduction
Your content here...
```
## Template Parameters
| Parameter | Description |
|-----------|-------------|
| `title` | Title of the thesis (in English) |
| `title_kr` | Title of the thesis (in Korean) |
| `author` | Author's name |
| `degree` | Degree type (e.g., "Philosophy", "Science") |
| `department` | Department name |
| `university` | University name (default: "Yonsei University") |
| `date` | Full date |
| `month` | Month of submission |
| `year` | Year of submission |
| `supervisor` | Name of the thesis supervisor |
| `committee` | Array of committee member names |
| `is_doctoral` | Boolean value (true for doctoral dissertation, false for master's thesis) |
## Formatting Notes
- The template uses Times New Roman at 11pt with 1.15 line spacing
- First-line indentation of 2em for paragraphs
- Justified text alignment
- Proper heading styles according to Yonsei University guidelines
- Automatic page numbering (Roman numerals for preliminaries, Arabic numerals for main content)
- Footnotes with 9pt font size
## Customization
You can customize the template by modifying the `thesis.typ` file. The file is well-commented to help you understand the different sections and formatting options.
## License
[MIT License](LICENSE)
## Acknowledgments
- Created by Axect
- Based on the official Yonsei University thesis guidelines