An open API service indexing awesome lists of open source software.

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

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}
```

![Title Example](./img/title_example.jpg)

### 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}
}
```

![Authors Example](./img/authors_example.jpg)

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}
```

![Affiliation Example](./img/affiliation_example.jpg)

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.