-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rmd
64 lines (51 loc) · 1.15 KB
/
main.rmd
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
output:
pdf_document:
latex_engine: xelatex
html_document:
toc: true
self_contained: true
title: My Paper
author: Kroll Krollëv
mainfont: CMU Serif
monofont: DejaVuSansMono.ttf
fontsize: 11pt
numbersections: true
indent: true
header-includes:
- \usepackage{indentfirst}
- \usepackage[russian]{babel}
- \pagenumbering{gobble} # required in order to skip numbering of first 2 pages
---
\clearpage
\tableofcontents
\clearpage
\pagenumbering{arabic}
# Header
# Header 2
1. List item 1
1. List item 2
1. List item 3
Greek letters:
* $\Delta$
* $\tau$
\begin{equation}
\vec{A} = \vec{x_{0}} A_{x} + \vec{y_{0}} A_{y} + \vec{z_{0}} A_{z}
\end{equation}
* $\vec{x_{0}}, \vec{y_{0}}, \vec{z_{0}}$
* $A_{x}, A_{y}, A_{z}$
\begin{equation}
\vec{A} + \vec{B} = \vec{x_{0}} (A_{x} + B_{x}) + \vec{y_{0}} (A_{y} + B_{y}) + \vec{z_{0}} (A_{z} + B_{z})
\end{equation}
\begin{equation}
|\vec{A}, \vec{B}| = \vec{A} \vec{B} = \vec{\nu_{0}} A B sin(\alpha) =
\begin{pmatrix}
\vec{x_0} & \vec{y_0} & \vec{z_0}\\
A_x & A_y & A_z\\
B_x & B_y & B_z
\end{pmatrix}
\end{equation}
Python code output:
```{python, echo=FALSE}
2+2
```