aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInigoGutierrez <inigogf.95@gmail.com>2020-03-04 23:20:09 +0100
committerInigoGutierrez <inigogf.95@gmail.com>2020-03-04 23:20:39 +0100
commit702d833cd163a384b7279aa35451f29c546785b4 (patch)
treec3f0e748e5013b4cd473ca2d25906a8a77b47f24
parent9cfb09a7240e35a0885f6e700044a08ada72dd8c (diff)
downloadconfigs-702d833cd163a384b7279aa35451f29c546785b4.tar.gz
configs-702d833cd163a384b7279aa35451f29c546785b4.zip
Created LaTeX template snippet for vim.
-rw-r--r--files/vim/ftplugin/tex/snips/template.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/files/vim/ftplugin/tex/snips/template.txt b/files/vim/ftplugin/tex/snips/template.txt
new file mode 100644
index 0000000..1f4bd46
--- /dev/null
+++ b/files/vim/ftplugin/tex/snips/template.txt
@@ -0,0 +1,30 @@
+\documentclass{article}
+
+\usepackage{geometry}
+\usepackage{graphicx}
+\usepackage{booktabs}
+
+\geometry{left=4.5cm,top=2cm,bottom=2cm,right=4.5cm}
+
+\renewcommand{\contentsname}{Contenidos}
+\renewcommand{\figurename}{Figura}
+
+\begin{document}
+
+\frenchspacing
+
+\title{<+++>}
+
+\author{<++>}
+
+\date{}
+
+\maketitle
+
+\tableofcontents
+
+\section{<++>}
+
+<++>
+
+\end{document}