https://github.com/jensostertag/uulm-document
Inofficial LaTeX Template for Documents at Ulm University
https://github.com/jensostertag/uulm-document
latex latex-template ulm-university uulm
Last synced: about 2 months ago
JSON representation
Inofficial LaTeX Template for Documents at Ulm University
- Host: GitHub
- URL: https://github.com/jensostertag/uulm-document
- Owner: JensOstertag
- License: cc0-1.0
- Created: 2022-06-28T09:05:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-06T07:11:02.000Z (almost 2 years ago)
- Last Synced: 2025-01-16T04:10:49.470Z (3 months ago)
- Topics: latex, latex-template, ulm-university, uulm
- Language: TeX
- Homepage:
- Size: 963 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# uulm-document
An inofficial LaTeX Documentclass for Documents at Ulm University.## Installation
### Getting Started
- Create a Project Folder or on your Device, where you keep all your Document Files
- Download this Repository and move the File `uulm-document.cls` and the Directory `img` to your Project Folder
- Create the `.tex`-File for your DocumentYour Project Folder should look like this:
```
Project_Folder
╟─ img
║ ╙─ uulmlogo.png
╟─ uulm-document.cls
╙─ your_document.tex
```### Document Setup
For a more detailed Instruction on how to setup your Document, plase take a Look at the Documentation.There is a bare Minimum Script you can copy:
```LaTeX
\documentclass[a4paper]{uulm-document}\documentTitle{Document Title}
\documentSubtitle{Document Subtitle}
\documentAuthor{Document Author}
\documentDate{\today}\faculty{default}
\titlepagestyle{default}
\printmodefalse\begin{document}
\maketitle
\tableofcontents
\end{document}
```