From: Guenter M. <mi...@us...> - 2009-04-15 08:42:43
|
On 2009-04-14, Michael P. Soulier wrote: > On 14/04/09 Guenter Milde said: >> Rather incomplete than broken. However the number of required packages is >> reduced in the SVN version compared to the release 0.5. > Ok. I'm using 0.4 from Gentoo Linux ATM... Pretty old. But might be ok to start with. ... > msoulier@anton:~/temp/rst$ cat doc.rst ... > msoulier@anton:~/temp/rst$ rst2latex.py doc.rst > doc.tex && latex doc.tex ... > ! LaTeX Error: File `aeguill.sty' not found. > Looks like I'm missing something. Yes. But this can be circumvented by setting the T1 font encoding, <http://docutils.sourceforge.net/docs/user/latex.html#font-encoding>, best in a ~/.docutils configuration file (see http://docutils.sourceforge.net/docs/user/config.html). For a test you can just edit the generated *.tex file: uncomment the "offending" commands (\usepackage{ae,aeguill} in this case) and try again. > The rst2newlatex output isn't any better. > ! LaTeX Error: File `scrartcl.cls' not found. > Perhaps I need the texlive-latex-extra package... In Debian, it is in 'texlive-latex-recommended'. Also the typearea.sty package, needed by latex2rst.py, is in texlive-latex-recommended. Günter |