1
0
This commit is contained in:
Miguel Salgado 2023-11-08 06:46:06 -08:00
commit 1d050b0873
3 changed files with 28 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.tmp
videos
build

13
Makefile Normal file
View 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
View 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}