https://github.com/Dethada/NUS-SoC-Report
LaTeX template for NUS SoC UROP final report.
https://github.com/Dethada/NUS-SoC-Report
latex latex-template nus urop
Last synced: 15 days ago
JSON representation
LaTeX template for NUS SoC UROP final report.
- Host: GitHub
- URL: https://github.com/Dethada/NUS-SoC-Report
- Owner: Dethada
- License: mit
- Created: 2024-04-12T14:59:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-23T12:07:27.000Z (over 1 year ago)
- Last Synced: 2024-11-15T11:08:32.846Z (11 months ago)
- Topics: latex, latex-template, nus, urop
- Language: TeX
- Homepage:
- Size: 166 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NUS SoC LaTeX Template
LaTeX template for NUS SoC UROP/FYP final report.
Made based on
- [NUS SoC UROP report format guidelines](https://www.comp.nus.edu.sg/wp-content/uploads/2023/10/UROP_Report_Format.pdf).
- [NUS SoC FYP report format
guidelines](https://www.comp.nus.edu.sg/wp-content/uploads/2023/10/FYP-Report-Format-final_000.pdf)Sample report can be found [here](sample/sample.pdf).
To compile the pdf (this will automatically compile the pdf whenever the source files are modified):
```bash
latexmk -pdf -outdir=build -pvc main.tex
```To modify the Project Type (UROP or FYP), Project Title, Author Name and Academic Year, modify the
last few lines of [preamble.tex](preamble.tex)```latex
% \newcommand{\projecttype}{B.Comp. Dissertation}
\newcommand{\projecttype}{Undergraduate Research Opportunity Programme (UROP) Project Report}
\newcommand{\authorname}{John Doe}
\newcommand{\projecttitle}{Project Title}
\newcommand{\academicyear}{2024/2025}
```