https://github.com/dethada/nus-soc-report
LaTeX template for NUS SoC UROP/FYP final report.
https://github.com/dethada/nus-soc-report
latex latex-template nus urop
Last synced: 5 months ago
JSON representation
LaTeX template for NUS SoC UROP/FYP 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: 2025-03-10T15:09:58.000Z (7 months ago)
- Last Synced: 2025-05-12T06:59:52.055Z (5 months ago)
- Topics: latex, latex-template, nus, urop
- Language: TeX
- Homepage:
- Size: 169 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- 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}
```