Initial commit
This commit is contained in:
commit
bd085e05eb
4 changed files with 50 additions and 0 deletions
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
*.aux
|
||||
*.log
|
||||
*.nav
|
||||
*.out
|
||||
*.synctex.gz
|
||||
*.snm
|
||||
*.toc
|
||||
*.fls
|
||||
*.fdb_latexmk
|
||||
img/*.pdf
|
||||
beamer.pdf
|
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
all: beamer.pdf
|
||||
|
||||
pdf: beamer.pdf
|
||||
|
||||
images:
|
||||
$(MAKE) -C img
|
||||
|
||||
beamer.pdf: beamer.tex images
|
||||
pdflatex -synctex=1 -interaction=nonstopmode beamer.tex
|
||||
pdflatex -synctex=1 -interaction=nonstopmode beamer.tex
|
||||
|
||||
clean:
|
||||
rm -f Secciones/*.aux
|
||||
rm -f *.toc *.aux *.bbl *.blg *.fls *.out *.log *.synctex.gz
|
||||
# $(MAKE) -C img clean
|
15
beamer.tex
Normal file
15
beamer.tex
Normal file
|
@ -0,0 +1,15 @@
|
|||
\documentclass{beamer}
|
||||
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[english]{babel}
|
||||
\usepackage{graphicx}
|
||||
|
||||
\title{Fragmentación de programas con excepciones}
|
||||
\date{Dec 16th, 2019}
|
||||
\author{Carlos S. Galindo Jiménez}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\maketitle
|
||||
|
||||
\end{document}
|
9
img/Makefile
Normal file
9
img/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
dotfiles = $(shell ls *.dot | sed -e 's/\.dot/\.pdf/')
|
||||
|
||||
all: $(dotfiles)
|
||||
|
||||
%.pdf: %.dot
|
||||
dot -Tpdf $< -o $@
|
||||
|
||||
clean:
|
||||
rm -f *.pdf
|
Loading…
Reference in a new issue