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

https://github.com/tamada/thesis_generator

Generating the template of the bachelor, master and doctoral dissertation
https://github.com/tamada/thesis_generator

Last synced: 10 months ago
JSON representation

Generating the template of the bachelor, master and doctoral dissertation

Awesome Lists containing this project

README

          

# thesis generator

Generates a thesis from the template.

## Usage

```sh
thesis-generator [OPTIONS]
OPTIONS
-t, --template specify the template. available: latex, html, markdown, word.
default: latex.
-o, --output specify the output directory or archive file (zip or tar.gz).
-h, --help print this help message.
SETTING_JSON
specify the setting file for the thesis template.
```

### Setting file

```json
{
"degree": "bachelor", // or "master"
"title": "Thesis Title",
"supervisor": "Supervisor Name",
"author": {
"name": "Author Name in Japanese",
"email": "Author Email",
"affiliation": {
"university": "University Name",
"department": "Department Name"
}
},
"repository": {
"owner": "tamada", // GitHub or GitLab username
"type": "github"
}
}
```