[issue3909] Building PDF documentation from tex files

2008-10-16 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: OK, I've committed a fix that I hope will work for all situations in r66916. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3909 ___

[issue3909] Building PDF documentation from tex files

2008-10-15 Thread Sergey Lipnevich
Sergey Lipnevich [EMAIL PROTECTED] added the comment: I don't know what the proper procedure is (reopening or filing a new ticket), but I see this problem with Sphinx 0.5dev-20081015 and Python 2.6 on Windows XP. The change recommended by Winfried in msg73874 seems to fix it (patch attached).

[issue3909] Building PDF documentation from tex files

2008-10-08 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: OK, no problem. I should have thought about that sooner. Happy TeXing :) -- resolution: - works for me status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3909

[issue3909] Building PDF documentation from tex files

2008-10-05 Thread Winfried Plappert
Winfried Plappert [EMAIL PROTECTED] added the comment: I have rerun the making of the PDFs with the make command. Everything looks fine now. I did not realize that pdflatex is called multiple times during the process of PDF creation. %.pdf: %.tex pdflatex '$' pdflatex '$'

[issue3909] Building PDF documentation from tex files

2008-10-03 Thread Winfried Plappert
Winfried Plappert [EMAIL PROTECTED] added the comment: Now that the official PDF documentation is released for download on the website - including TOC and Index for every major document, the question arises: what is the difference between the 'official' built and my 'private' built since some of

[issue3909] Building PDF documentation from tex files

2008-09-26 Thread Winfried Plappert
Winfried Plappert [EMAIL PROTECTED] added the comment: I had a go at commenting stuff in sphinx.sty, but every change produced another error message. In the end I concluded that the best thing is to leave sphinx.sty untouched, despite the fact that the index is always missing. Since I do not

[issue3909] Building PDF documentation from tex files

2008-09-26 Thread Winfried Plappert
Winfried Plappert [EMAIL PROTECTED] added the comment: I found at least one bug: % Detect if we're using XeLaTeX \IfFileExists{ifxetex.sty}{% \RequirePackage{ifxetex} }{% not using xelatex \newif\ifxetex\xetexfalse %(line 69) } should say: \newif\ifxetex\xetexfalse\fi That makes

[issue3909] Building PDF documentation from tex files

2008-09-26 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: If that solves the problem, that is very curious indeed. There must not be a \fi after \newif; its syntax is \newif\ifname\default Later it can be used as \ifname ... \fi. What TeX distribution and version of tex/latex are you using?

[issue3909] Building PDF documentation from tex files

2008-09-26 Thread Winfried Plappert
Winfried Plappert [EMAIL PROTECTED] added the comment: I just tested it under Linux/Ubuntu and it is the same behaviour as described earlier: fix line 69 in sphinx.sty and it works. My pdflatex version on Windows (MiKTeX) has been mentioned in my first entry and the version for Ubuntu is

[issue3909] Building PDF documentation from tex files

2008-09-24 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Hmm, I can't really tell what may cause the Too many } error. Can you try and play around with sphinx.sty, commenting out stuff, to find where it comes from? ___ Python tracker [EMAIL PROTECTED]

[issue3909] Building PDF documentation from tex files

2008-09-22 Thread Winfried Plappert
Winfried Plappert [EMAIL PROTECTED] added the comment: Hi Georg, whatever I am getting when I am doing a make latex in the Docs directory. The current version is 66550: Sphinx v0.5, building latex. I just redid it again and the error persists. But you say that one has to use unreleased SVN

[issue3909] Building PDF documentation from tex files

2008-09-21 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Which version of Sphinx did you use to build the docs? The Python docs currently need the unreleased SVN version (that will of course change for the final release). If you have a Sphinx release installed as a Python egg, it will cause problems,

[issue3909] Building PDF documentation from tex files

2008-09-19 Thread Winfried Plappert
New submission from Winfried Plappert [EMAIL PROTECTED]: I try to build PDF documentation from current Python-2.6rc2 and Python- 3.0rc1 versions. I tried the process under Windows XP and also Linux (Ubuntu). The results are the same. The documentation is not built correctly, mostly the table

[issue3909] Building PDF documentation from tex files

2008-09-19 Thread Winfried Plappert
Winfried Plappert [EMAIL PROTECTED] added the comment: modified version info: 2.6, 3.0 -- versions: +Python 2.6 -Python 2.5 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3909 ___