https://github.com/techassi/paper-template
This is my personal LaTeX template for writing papers
https://github.com/techassi/paper-template
latex latex-template paper paper-template template
Last synced: 8 months ago
JSON representation
This is my personal LaTeX template for writing papers
- Host: GitHub
- URL: https://github.com/techassi/paper-template
- Owner: Techassi
- Created: 2022-01-08T10:39:12.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-18T16:11:56.000Z (about 4 years ago)
- Last Synced: 2025-06-07T13:05:16.686Z (8 months ago)
- Topics: latex, latex-template, paper, paper-template, template
- Language: TeX
- Homepage:
- Size: 702 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# paper-template
This is my personal LaTeX template for writing papers. I originally created this template during my studies at HFU. It
is inspired by the ASME Conference Paper template, see [here](https://www.ctan.org/pkg/asmeconf).
## Usage
### Title, Subtitle & Type - [Usage](https://github.com/Techassi/paper-template/blob/main/paper.tex#L14-L16)
To set the title use:
```latex
\setTitle{This is a very cool paper title}
```
Similarly the subtitle can be set like:
```latex
\setSubtitle{I am a subtitle}
```
Last but not least the document type is set with:
```latex
\setDoctype{Paper}
```

### Authors - [Usage](https://github.com/Techassi/paper-template/blob/main/paper.tex#L18)
To print a list of authors use:
```latex
\setAuthors{
{John Doe, -, john.doe@example.com},
{Jane Doe, -, jane.doe@example.com},
{Catherine Parr, -, catherine.parr@example.com}
}
```

All provided names will be rendered as a grid table directly under the title (and subtitle).
### Affiliations - [Usage](https://github.com/Techassi/paper-template/blob/main/paper.tex#L19)
```latex
\setAuthors{
{John Doe, 1, john.doe@example.com},
{Jane Doe, 2, jane.doe@example.com}
}
\setAffiliations{Fantasy University, A Very Real University}
```

All provided universities will be rendered under the grid table of authors with continuous numbering. Providing `-` as
a second argument in the `\setAuthors{}` command will hide the affiliation.