google-code-export / latex-lab

Automatically exported from code.google.com/p/latex-lab
1 stars 0 forks source link

No support for Cyrillic #67

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
It is impossible to compile a LaTeX document with, for example, Russian
text in it.  By itself it produces no output whatsoever, while adding
\usepackage{cyrillic} command errors out, as Cyrillic package is not
available with the default compiler.

Here's a sample document:

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{cyrillic}
\title{\LaTeX по-русски}
\date{}
\begin{document}
  \maketitle
  \LaTeX{} может говорить и по-русски.
 \end{document}

Original issue reported on code.google.com by cees...@gmail.com on 7 May 2010 at 4:48

GoogleCodeExporter commented 9 years ago
As far as I understand, modern way of using Cyrillic in LaTeX documents is like 
one 
below, but it doesn't work anyway. 

It would be awesome if you guys could add Cyrillic support! The instructions 
about 
Cyrillic support in LaTeX are given here: http://www.latex-
project.org/guides/cyrguide.pdf
texlive package for Cyrillic in Ubuntu are called texlive-lang-cyrillic

% Cyrillic document sample
\documentclass[12pt]{article}
\usepackage[T2A]{fontenc} 
\usepackage[utf8]{inputenc}
\usepackage[russian,english]{babel}

\title{Заголовок документа} 
\begin{document}
\maketitle
Тестовый документ, подготовленный в \LaTeX
\end{document}

Original comment by dbarashev on 7 May 2010 at 10:15

GoogleCodeExporter commented 9 years ago
We'll be taking a look at this. Russian/Cyrillic isn't currently supported by 
the
LaTeX environment.

Original comment by bobbysoa...@gmail.com on 7 May 2010 at 5:30

GoogleCodeExporter commented 9 years ago
Do you mean *by your LaTeX environment* ? Because in general it is perfectly 
supported.

Original comment by dbarashev on 7 May 2010 at 5:40

GoogleCodeExporter commented 9 years ago
Yes, that's what i meant.

Original comment by bobbysoa...@gmail.com on 7 May 2010 at 5:47

GoogleCodeExporter commented 9 years ago
Okay. Are you running your LaTeX on AWS? If yes then do you know if one can 
configure 
a custom Linux image with texlive and all the necessary packages on AWS?

Original comment by dbarashev on 7 May 2010 at 5:52

GoogleCodeExporter commented 9 years ago
Yes actually you can. In LaTeX Lab, under Compiler -> Settings you can point to 
any
compiler that follows the CLSI interface. I don't have an AWS image yet 
available. If
you're interested i can make this available once it's ready.

Original comment by bobbysoa...@gmail.com on 7 May 2010 at 5:56

GoogleCodeExporter commented 9 years ago
Yeah, I've seen the setting in LaTeX lab, the question was if I can configure 
AWS 
instance so that all Cyrillic stuff is there... Your comment that it is not 
supported 
by LaTeX environment -- is it just in your instance or absolutely everywhere on 
AWS? 
Sorry, I know next to nothing about the software configuration on AWS, that's 
why I am 
bugging you :)

Original comment by dbarashev on 7 May 2010 at 6:01

GoogleCodeExporter commented 9 years ago
It's just the particular instance. In fact, i believe TeX Live out of the box 
won't
have the Cyrillic support. Amazon is just hosting plain Ubuntu VMs with Apache, 
TeX
Live and CLSI. You can bring up any server, on Amazon or elsewhere, as long as 
it
exposes a CLSI interface, it will work just as well.

Original comment by bobbysoa...@gmail.com on 7 May 2010 at 6:46