diff options
| author | Mitsuo Tokumori <[email protected]> | 2023-05-25 18:55:55 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2023-05-25 18:55:55 -0500 |
| commit | 51added26880538944ef2ee4fcea062950f8ee44 (patch) | |
| tree | 228a8688f613547da9154558f026f4cc1e032f45 /Makefile | |
| download | thesis-51added26880538944ef2ee4fcea062950f8ee44.tar.gz thesis-51added26880538944ef2ee4fcea062950f8ee44.tar.bz2 thesis-51added26880538944ef2ee4fcea062950f8ee44.zip | |
Initial commit.
I'm working on Entregable 2. tab:objetivos-resultados-verificacion
is too long. I'm trying to convert it to longtable object.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5f3d94d --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Build thesis, copy it to the appropiate deliverable name too. +# Yes, pdflatex needs to run twice (sometimes even three times?). +# https://www.learnlatex.org/en/lesson-12 + +# Supposedly `xelatex` is an improved version of `pdflatex` that supports +# unicode. But I'm having trouble with it, seems like it can't find the +# appropiate fonts. + +DELIVERABLE="20170895_RobertoTokumori_PatriciaNatividad_E1.pdf" + +.PHONY: all +all: thesis.bib + pdflatex thesis.tex + biber thesis + pdflatex thesis.tex + cp thesis.pdf $(DELIVERABLE) + +.PHONY: clean +clean: + rm *.aux *.bbl *.bcf *.blg *.out *.run.xml *.toc thesis.log \ + chapter/*.aux |
