Initial commit

master
Ian Mancini 4 years ago
commit 03e9270ecd

2
.gitignore vendored

@ -0,0 +1,2 @@
*.pdf
*.docx

@ -0,0 +1,20 @@
# Borrador para TDMM5
Este repositorio contiene el borrador para mi tesina y algunas notas con respecto a la instalación.
El documento compilado se puede encontrar en la siguiente [carpeta de Google Drive](https://drive.google.com/drive/folders/1egU6H24zAIqxC0oAqmy2QWlarzkgZsXU?usp=sharing)
## Compilando el documento
Para compilar el documento se puede usar el script (shell) `compile`:
```
$ ./compile -p # Convierte borrador.md en borrador.pdf (XeLaTeX)
$ ./compile -d # Convierte borrador.md en borrador.docx
```
El script depende de [Pandoc](https://pandoc.org/).
## Código fuente para la instalación
El código fuente de la instalación se puede encontrar en el siguiente enlace: [ianmethyst/socialnetwork](https://git.trovadores.duckdns.org/ianmethyst/socialnetwork)

File diff suppressed because it is too large Load Diff

@ -0,0 +1,31 @@
#!/bin/sh
d="False"
p="True"
while getopts "adp" opts; do
case "${opts}" in
d)
p="False"
d="True"
;;
p)
p="True"
d="False"
;;
a)
p="True"
d="True"
;;
esac
done
if [[ "$p" == "True" ]]; then
echo "Compiling .pdf"
pandoc -i borrador.md --pdf-engine=xelatex -o borardor.pdf
fi
if [[ "$d" == "True" ]]; then
echo "Compiling .docx"
pandoc -i borrador.md -o borardor.docx
fi

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 KiB

Loading…
Cancel
Save