commit bc2b19329b1face094dc4a6cdc6cf74c6f3971f3
parent 003357ce6402520f2cb5391827ffd515a4e2ef0c
Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe>
Date: Tue, 28 Feb 2023 17:10:57 -0500
Updated tex ultisnippet
Update template snippet
Diffstat:
1 file changed, 19 insertions(+), 3 deletions(-)
diff --git a/UltiSnips/tex.snippets b/UltiSnips/tex.snippets
@@ -12,11 +12,27 @@ endglobal
snippet template "Basic template" b
-\documentclass[a4paper]{article}
+\documentclass{article}
-\usepackage[T1]{fontenc}
\usepackage{lmodern}
-\usepackage{amsmath, amssymb}
+\usepackage[T1]{fontenc}
+\usepackage{amssymb, mathtools, mathrsfs}
+\usepackage[paperwidth=11cm,paperheight=13cm,left=5mm,right=5mm,top=5mm,bottom=5mm]{geometry}
+
+\usepackage{amsthm}
+\newtheorem{proposition}{Proposition}
+\newtheorem{theorem}{Theorem}
+\newtheorem{lemma}{Lemma}
+\newtheorem{affirmation}{Affirmation}
+\newtheorem{exercise}{Exercise}
+\newtheorem{problem}{Problem}
+\theoremstyle{definition}
+\newtheorem{definition}{Definition}
+\theoremstyle{remark}
+\newtheorem{example}{Example}
+\newtheorem{corolary}{Corolary}
+\newtheorem{observation}{Observation}
+\newtheorem{remark}{Remark}
\begin{document}
$0