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
- Host: GitHub
- URL: https://github.com/tamada/thesis_generator
- Owner: tamada
- Created: 2023-12-03T06:27:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T00:04:42.000Z (about 2 years ago)
- Last Synced: 2023-12-19T07:05:55.823Z (about 2 years ago)
- Language: Go
- Size: 589 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
}
```