-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
67 lines (56 loc) · 1.65 KB
/
Makefile
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# PHD thesis in Nagoya University
# 28, Jan, 2023@Tingting WANG
# Usage:
# make pdf to generate phd thesis pdf version # compile all scripts
# set python environment
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/source
OUTPUTDIR=$(BASEDIR)/output
UTILSDIR=$(BASEDIR)/utils
all: dir titlepage acknow contents
word: $(PAPER_DOCX)
dir:
mkdir -p output
source ~/.bash_profile
titlepage:
pdflatex \
$(INPUTDIR)/titlepage.tex
acknow:
pdflatex \
$(INPUTDIR)/acknowledgement.tex
contents:
pandoc \
--filter pandoc-crossref \
$(INPUTDIR)/metadata.yaml \
$(INPUTDIR)/*.md \
--to=latex \
--citeproc \
--bibliography=$(UTILSDIR)/bibliography-hp36.bib \
--bibliography=$(UTILSDIR)/bibliography-fixl.bib \
--bibliography=$(UTILSDIR)/bibliography-cp12.bib \
--csl=$(UTILSDIR)/american-chemical-society.csl \
--lua-filter=$(UTILSDIR)/scholarly-metadata.lua \
--lua-filter=$(UTILSDIR)/pandoc-list-table.lua \
--lua-filter=$(UTILSDIR)/author-info-blocks.lua \
-o $(OUTPUTDIR)/contents.pdf
word:
pandoc \
$(INPUTDIR)/*.md \
-o $(OUTPUTDIR)/contents.docx \
# --quiet \
-f markdown \
--from=markdown+tex_math_single_backslash+tex_math_dollars+raw_tex \
--reference-doc=$(UTILSDIR)/template.docx \
--filter pandoc-crossref \
--citeproc \
--to=latex \
--bibliography=$(UTILSDIR)/bibliography-hp36.bib \
--bibliography=$(UTILSDIR)/bibliography-fixl.bib \
--bibliography=$(UTILSDIR)/bibliography-cp12.bib \
--csl=$(UTILSDIR)/american-chemical-society.csl \
--lua-filter=$(UTILSDIR)/scholarly-metadata.lua \
--lua-filter=$(UTILSDIR)/pandoc-list-table.lua \
# --lua-filter=$(UTILSDIR)/author-info-blocks.lua \
--to=docx \
--mathjax \
-t docx