-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
41 lines (32 loc) · 938 Bytes
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{geometry}
\usepackage{xcolor}
\title{Sample LaTeX Document}
\author{Your Name}
\date{\today}
\begin{document}
\maketitle
\section{Introduction}
This is a sample LaTeX document with the given preamble.
\section{Mathematics}
Here are some mathematical symbols and equations using the packages you've included:
\begin{enumerate}
\item Set of natural numbers: $\mathbb{N}$
\item Set of integers: $\mathbb{Z}$
\item A quadratic equation: $ax^2 + bx + c = 0$
\item A matrix:
\[
\begin{bmatrix}
a & b \\
c & d \\
\end{bmatrix}
\]
\end{enumerate}
\section{Colored Text}
Here's some text in \textcolor{red}{red}, \textcolor{blue}{blue}, and \textcolor{green}{green}.
\section{Conclusion}
This document demonstrates some basic features provided by the packages in the preamble.
\end{document}