-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
109 lines (74 loc) · 2.07 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Executables
## Required for thumbpdf as latexmk does not support thumbpdf by itself
latexcompiler = lualatex
## evince at linux
viewer = 'C:/Program Files (x86)/SumatraPDF/SumatraPDF.exe'
## Editor
editor = gedit
# Files
## Main file name and literature list
MASTER_TEX = paper.tex
LITERATURE = paper.bib
## Derived file names
SRC = $(shell basename $(MASTER_TEX) .tex)
TEX_FILES = $(wildcard *.tex content/*.tex)
GFX_FILES = $(wildcard figures/*)
PDF = $(SRC).pdf
AUX = $(SRC).aux
# Other
date=$(shell date +%Y%m%d%H%M)
# Tasks
## was wird gemacht, falls nur make aufgerufen wird
## hier sollte noch der aspell check rein für jedes file einzeln über for schleife
all: $(PDF)
.PHONY: $(PDF)
compile: $(PDF)
$(PDF): $(MASTER_TEX) $(LITERATURE) $(TEX_FILES) $(GFX_FILES)
latexmk $(MASTER_TEX)
clean:
latexmk -C
## Endversion - mit eingebauter Seitenvorschau
## Mehrere Durchlaeufe, da bei longtable einige runs mehr vonnoeten sind...
final: $(PDF)
thumbpdf $(PDF)
$(latexcompiler) $(MASTER_TEX)
mrproper: clean
rm -f *~
# Verschiedene Ausgabformate
pdf: $(PDF)
stand: $(PDF)
cp $(PDF) "Ausarbeitung - Stand $(date).pdf"
html: clean pdf
rm $(AUX)
htlatex $(SRC) "html,word,charset=utf8" " -utf8"
# Tools
view: pdf
$(viewer) $(PDF)&
edit:
$(viewer) $(PDF)&
$(editor) *.tex&
# Support
## Rechtschreibung
##
## Das Ganze am Besten vor der final und als eigene Version ala "make aspell"
##
## .aspell.conf - zu ignorierende LaTeX-Befehle
## Schreiben der LaTeX-Befehle in eine config Dateiname. Sieht so aus:
## add-tex-command democommand PO // PO := prüfe []{} ;; po := ignoriere []{}
##
## .aspell.en.pws - persönliches Wörterbuch
aspell:
for tex in $(TEX_FILES);
do
# One could add a personal dictionary using --personal=.aspell.en.pws
aspell --mode=tex -l en_US --encoding=utf-8 --conf=./.aspell.conf -p ./.aspell.en.pws -c $$tex;
done
showundef:
grep undefined $(LOG)
## Reformatierung
format:
latexindent -l -s -sl -w $(SRC)
indent:
latexindent -y="indentPreamble:1,defaultIndent:' '" -m -w $(SRC)
split-sentences:
latexindent -m -l -s -sl -w $(SRC)