aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LaTeX/test.pdfbin0 -> 34912 bytes
-rw-r--r--LaTeX/test.tex49
-rw-r--r--LaTeX/test1.pdfbin0 -> 58424 bytes
-rw-r--r--LaTeX/test1.tex42
4 files changed, 91 insertions, 0 deletions
diff --git a/LaTeX/test.pdf b/LaTeX/test.pdf
new file mode 100644
index 0000000..0fd38f9
--- /dev/null
+++ b/LaTeX/test.pdf
Binary files differ
diff --git a/LaTeX/test.tex b/LaTeX/test.tex
new file mode 100644
index 0000000..8425092
--- /dev/null
+++ b/LaTeX/test.tex
@@ -0,0 +1,49 @@
+\documentclass{article}
+
+\usepackage{amsmath}
+
+\usepackage{polyglossia}
+\setmainlanguage{russian} % alternative for lack of bulgarian support
+\setotherlanguage{english}
+\newfontfamily\russianfont{Times New Roman}
+
+\begin{document}
+\huge
+
+\begin{center}
+Теореми за разположение на корени на уравнение от типа $ax^2+bx+c, a \neq 0$
+\end{center}
+
+\begin{center}
+
+\textbf{Теорема 1:} когато искаме\linebreak
+$x_1 < p < x_2$\linebreak
+(тоест $x_1 < p$ и $x_2 \geq p$),\linebreak
+трябва\linebreak
+$a * f(p) < 0$
+
+\end{center}
+
+\begin{center}
+
+\textbf{Теорема 2:} когато искаме\linebreak
+$x_1 < p$ и $x_2 < p$\linebreak
+трябва\linebreak
+$a * f(p) > 0$,\linebreak
+$D \geq 0$,\linebreak
+$-\frac{b}{2a} < p$
+
+\end{center}
+
+\begin{center}
+
+\textbf{Теорема 3:} когато искаме\linebreak
+$x_1 > p$ и $x_2 > p$\linebreak
+трябва\linebreak
+$a * f(p) > 0$,\linebreak
+$D \geq 0$,\linebreak
+$-\frac{b}{2a} > p$
+
+\end{center}
+
+\end{document} \ No newline at end of file
diff --git a/LaTeX/test1.pdf b/LaTeX/test1.pdf
new file mode 100644
index 0000000..fe9f004
--- /dev/null
+++ b/LaTeX/test1.pdf
Binary files differ
diff --git a/LaTeX/test1.tex b/LaTeX/test1.tex
new file mode 100644
index 0000000..c6834c2
--- /dev/null
+++ b/LaTeX/test1.tex
@@ -0,0 +1,42 @@
+% Document must be built with XeLaTeX
+\documentclass[12pt]{article}
+
+\usepackage{amsmath}
+\usepackage{fontspec} % loaded by polyglossia, but included here for transparency
+\usepackage{polyglossia}
+
+\setmainlanguage{russian}
+\setotherlanguage{english}
+\newfontfamily\russianfont{Times New Roman}
+
+\title{Статистическо изследване върху скорост и ефикасност на най-използваните алгоритми за сортиране на елементи}
+\author{Камен Димитров Младенов}
+\date{23 Януари 2021}
+
+\begin{document}
+\maketitle
+\newpage
+
+\section{Същност и избор на темата}
+
+Сортиращият алгоритъм е един от най-важните аспекти на програмирането в днешно време. Чрез него, дадени елементи могат да бъдат подредени в нарастваща (или намаляваща) последователност, което намира употреба във всичко от новинарски сайтове и социални медии, до видео игри и операционни системи.
+
+Този тип алгоритъм бива изследван практически от началото на компютърната наука - най-ранните сортиращи алгоритми се забелязват през 1951, а анализиране на Bubble Sort, може би най-известния сортиращ алгоритъм, бива извършено още през 1957.
+
+\begin{english}
+
+ \section{Hello World!} % creates a section
+
+ \textbf{Hello World!} Today I am learning \LaTeX. %notice how the command will end at the first non-alphabet charecter such as the . after \LaTeX
+ \LaTeX{} is a great program for writing math. I can write in line math such as $a^2+b^2=c^2$ %$ tells LaTexX to compile as math
+ . I can also give equations their own space:
+ \begin{equation} % Creates an equation environment and is compiled as math
+ \gamma^2+\theta^2=\omega^2
+ \end{equation}
+ If I do not leave any blank lines \LaTeX{} will continue this text without making it into a new paragraph. Notice how there was no indentation in the text after equation (1).
+ Also notice how even though I hit enter after that sentence and here $\downarrow$
+ \LaTeX{} formats the sentence without any break. Also look how it doesn't matter how many spaces I put between my words.
+
+ For a new paragraph I can leave a blank space in my code.
+\end{english}
+\end{document}