| ... | @@ -11,10 +11,17 @@ LaTeX - [продвинутая система компьютерной верс |
... | @@ -11,10 +11,17 @@ LaTeX - [продвинутая система компьютерной верс |
|
|
|
|
|
|
|
Набросок грамматики языка:
|
|
Набросок грамматики языка:
|
|
|
|
|
|
|
|
document -> documentclass title author date document_body
|
|
`document -> documentclass title author date document_body`
|
|
|
documentclass -> article | paper
|
|
`documentclass -> article | paper `
|
|
|
document_body -> maketitle text | text
|
|
`document_body -> begin text end`
|
|
|
text ->
|
|
`text -> plain_text | text command text | eps`
|
|
|
|
`command -> textbf | it | section | subsection | itemise `
|
|
|
|
`it -> \it{text}`
|
|
|
|
`section -> \section{plain_text}`
|
|
|
|
`subsection -> \subsection{plain_text}`
|
|
|
|
`itemize -> begin_itemize items end_itemize`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Справка по Markdown](https://help.github.com/articles/basic-writing-and-formatting-syntax/)
|
|
[Справка по Markdown](https://help.github.com/articles/basic-writing-and-formatting-syntax/)
|
|
|
|
|
|
| ... | @@ -28,6 +35,10 @@ text -> |
... | @@ -28,6 +35,10 @@ text -> |
|
|
\begin{document}
|
|
\begin{document}
|
|
|
\maketitle
|
|
\maketitle
|
|
|
\it{Hello} \textbf{world}!
|
|
\it{Hello} \textbf{world}!
|
|
|
|
\begin{itemize}
|
|
|
|
\item one
|
|
|
|
\item two
|
|
|
|
\end{itemize}
|
|
|
\end{document}
|
|
\end{document}
|
|
|
```
|
|
```
|
|
|
|
|
|
| ... | @@ -42,6 +53,10 @@ September 1994 |
... | @@ -42,6 +53,10 @@ September 1994 |
|
|
***
|
|
***
|
|
|
|
|
|
|
|
_Hello_ **world**!
|
|
_Hello_ **world**!
|
|
|
|
|
|
|
|
- one
|
|
|
|
- two
|
|
|
|
|
|
|
```
|
|
```
|
|
|
что превращается в:
|
|
что превращается в:
|
|
|
|
|
|
| ... | @@ -53,3 +68,6 @@ September 1994 |
... | @@ -53,3 +68,6 @@ September 1994 |
|
|
***
|
|
***
|
|
|
|
|
|
|
|
_Hello_ **world**!
|
|
_Hello_ **world**!
|
|
|
|
|
|
|
|
- one
|
|
|
|
- two |
|
|
|
\ No newline at end of file |