воскресенье, 15 июля 2012 г.

LaTeX Super Short manual

This is about how to start using LaTeX ASAP. I'm using Mint Linux (which is Ubuntu, which is Debian).

First, install. I will install TeXMaker editor to shorten WYSIWYG and it will install LaTeX from dependancies. So you got it, I think.
sudo apt-get install texmaker
Then, some packages for russian language:
sudo apt-get install texlive-lang-cyrillic
Then, it possibly will need to update language.dat file:
sudo update-language
 Ок, now. You may run texmaker. It's user friendly =).
The very simple TeX source is:

\documentclass{book}
\begin{document}
This is Russia!!!
\end{document}
In TeXMaker press F1 to see pdf-ed document from this source.

 To enable russian language (we installed lang-packages earlier):

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}
\begin{document}
Это Россия!!!
\end{document}


That is all for the now. It's not a tutorial.

Комментариев нет:

Отправить комментарий