texcreate_lib/Templates/
math.rs

1pub const MATH_MAIN: &str = r#"% Math Template
2% MKProjects | www.mkproj.com
3% TexCreate | GPLv2 MIT License 
4\documentclass[11pt, letterpaper]{article}
5% MetaData goes here
6\author{}
7\title{}
8\date{}
9% Packages are in structure.tex
10\input{structure.tex}
11
12\begin{document}
13    \maketitle
14    \pagenumbering{arabic}
15    \newpage
16    \tableofcontents
17    \newpage
18    % Code goes here
19\end{document}
20"#;
21pub const MATH_STRUCTURE: &str = r#"% For math equations, theorems, symbols, etc
22\usepackage{amsmath}
23\usepackage{amsfonts}
24\usepackage{amssymb}
25\usepackage{amsthm} 
26
27% For pictures
28\usepackage{graphicx}
29\usepackage{tikz}
30
31% Theorems
32\newtheorem{theorem}{Theorem}
33\newtheorem{example}{Example}
34\newtheorem{remark}{Remark}
35\newtheorem{definition}{Definition}
36\newtheorem{corollary}{Corollary}
37\newtheorem{proposition}{Proposition}
38
39% Extra packages from config.toml goes here
40"#;