Spaces:
Sleeping
Sleeping
leonsimon23
commited on
Commit
•
9e16bb6
1
Parent(s):
8f2f1a5
Upload latex_template.tex
Browse files- templates/latex_template.tex +32 -0
templates/latex_template.tex
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
\documentclass[11pt]{article}
|
2 |
+
% Packages
|
3 |
+
\usepackage[utf8]{inputenc} % Allow UTF-8 input
|
4 |
+
\usepackage[T1]{fontenc} % Use 8-bit T1 fonts
|
5 |
+
\usepackage{geometry} % Set page size and margins
|
6 |
+
\usepackage{graphicx} % Enhanced support for graphics
|
7 |
+
\usepackage{hyperref} % For hyperlinks in the document
|
8 |
+
\usepackage{amsmath} % For mathematical formulas
|
9 |
+
\usepackage{amsfonts} % For mathematical fonts
|
10 |
+
\usepackage{amssymb} % For mathematical symbols
|
11 |
+
% Document geometry (page size, margins)
|
12 |
+
\geometry{a4paper, total={170mm,257mm}, left=20mm, top=20mm}
|
13 |
+
% Document starts here
|
14 |
+
\begin{document}
|
15 |
+
\title{Title of the Document}
|
16 |
+
\author{Author Name}
|
17 |
+
\date{\today}
|
18 |
+
\maketitle
|
19 |
+
\begin{abstract}
|
20 |
+
{{ abstract }}
|
21 |
+
\end{abstract}
|
22 |
+
\section{Introduction}
|
23 |
+
{{ introduction }}
|
24 |
+
\section{Main Content}
|
25 |
+
% Add your main content here
|
26 |
+
\section{Conclusion}
|
27 |
+
{{ conclusion }}
|
28 |
+
% References
|
29 |
+
\begin{thebibliography}{9}
|
30 |
+
% Add your references here
|
31 |
+
\end{thebibliography}
|
32 |
+
\end{document}
|