big bang
This commit is contained in:
commit
1d050b0873
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.tmp
|
||||
videos
|
||||
build
|
||||
13
Makefile
Normal file
13
Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
|
||||
build/%.pdf: src/%.tex
|
||||
mkdir -p $(shell dirname $@)
|
||||
rm -rf .tmp
|
||||
mkdir .tmp
|
||||
cp $< .tmp/input.tex
|
||||
cd .tmp ; pdflatex input.tex
|
||||
cp .tmp/input.pdf $@
|
||||
|
||||
serve:
|
||||
mkdir -p build
|
||||
python -m http.server --directory build/
|
||||
12
src/d1.tex
Normal file
12
src/d1.tex
Normal file
@ -0,0 +1,12 @@
|
||||
% -- Preámbulo
|
||||
\documentclass{article}
|
||||
|
||||
% idioma y entrada
|
||||
\usepackage[utf8]{inputenc}
|
||||
|
||||
|
||||
% -- Cuerpo del documento
|
||||
\begin{document}
|
||||
Hola mundo 3
|
||||
|
||||
\end{document}
|
||||
Loading…
Reference in New Issue
Block a user