Latex Template IST-UL
Instituto Superior Técnico, ULisboa, Thesis template, Master, PhD.
Latex Template IST-UL
Online template files using LaTex.
Sources
MSc thesis / PhD dissertation.
Extend abstract
Presentation
How to use?
1. Recommend architecture
1
2
3
4
5
6
7
8
9
10
11
12
my-thesis/
│
├── thesis.tex ← main document
├── istulthesis.cls ← class
├── mysettings.sty ← self-defined style (Optional)
├── chapters/
│ ├── intro.tex
│ └── methods.tex
├── images/
│ └── figure1.png
├── bibliography.bib
2. Use the template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
\documentclass[twoside]{istulthesis} % 使用 IST 的样式类
% 可选配置:
\usepackage{mysettings} % 如果你有自己的 .sty 文件
\usepackage{graphicx}
\usepackage{amsmath, amssymb}
\bibliographystyle{ieeetr}
\begin{document}
\title{Your Thesis Title}
\author{Your Name}
\date{July 2025}
\maketitle
\include{chapters/intro}
\include{chapters/methods}
\bibliography{bibliography}
\end{document}
3. Compile and Modify
This post is licensed under CC BY 4.0 by the author.