-
Notifications
You must be signed in to change notification settings - Fork 1
/
cookiecutter.json
46 lines (46 loc) · 2.38 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"project_name": "sample",
"project_description": "Sample Github project for cookiecutter-latex-ryerson",
"project_license": ["MIT", "Apache2.0", "GPLv3"],
"github_user": "rrwen",
"title": "Sample for cookiecutter-latex-ryerson",
"author": "Richard Wen",
"email": "[email protected]",
"past_degrees": "\n\nBachelor of Environmental Studies \\\\ \nHonours Geomatics, Computer Science Minor \\\\ \nUniversity of Waterloo, Waterloo, ON, 2014 \\\\ ~ \\\\ \n\nMaster of Spatial Analysis \\\\ \nRyerson University, Toronto, ON, 2016",
"degree": "Doctor of Philosophy",
"degree_program": "Civil Engineering",
"university": "Ryerson University",
"university_location": "Toronto, Ontario, Canada",
"year_convocation": "{% now 'utc', '%Y' %}",
"paper_type": ["dissertation", "major research paper", "thesis"],
"paper_width": "8.5in",
"paper_height": "11in",
"paper_margin": "1in",
"font_style": "Times New Roman",
"font_size": ["12pt", "11pt", "10pt"],
"spacing": ["doublespacing", "onehalfspacing"],
"figure_formats": ".pdf,.png,.jpg",
"bibliography_style": "apa",
"include_acknowledgements": ["yes", "no"],
"include_dedication": ["yes", "no"],
"include_list_of_tables": ["yes", "no"],
"include_list_of_figures": ["yes", "no"],
"include_appendices": ["yes", "no"],
"include_acronyms": ["yes", "no"],
"include_glossary": ["yes", "no"],
"include_index": ["yes", "no"],
"include_list_of_code": ["yes", "no"],
"vars": {
"github_url": "{{ 'https://github.com/' + cookiecutter.github_user + '/' + cookiecutter.project_name }} ",
"github_short": "{{ cookiecutter.github_user + '/' + cookiecutter.project_name }}",
"tex_title": "{{ '\\\\' + 'uppercase{' + cookiecutter.title + '}' }}",
"tex_file": "{{ (cookiecutter.author.split(' ')[-1] + cookiecutter.year_convocation + '_' + cookiecutter.project_name.replace(' ', '').replace('-','')).lower() }}",
"tex_documentclass": "{{ '[' + cookiecutter.font_size + ']{report}' }}",
"tex_setmainfont": "{{ '{'+ cookiecutter.font_style + '}' }}",
"tex_geometry": "{{ '{paperwidth=' + cookiecutter.paper_width + ',paperheight=' + cookiecutter.paper_height + ',margin=' + cookiecutter.paper_margin + '}' }}",
"tex_setspace": "{{ cookiecutter.spacing }}",
"tex_graphicspath": "{% raw %}{{./figures/}}{% endraw %}",
"tex_DeclareGraphicsExtensions": "{{ '{' + cookiecutter.figure_formats + '}' }}",
"year": "{% now 'utc', '%Y' %}"
}
}