Hello All! Sorrty for the almost unrelated question but I'm experiencing troubles with TeXLive. I installed just texlive, texlive-comment, and hevea and tsee this while rebuilding a package's docs:
==================== .... LaTeX Font Info: External font `cmex10' loaded for size (Font) <17.28> on input line 190. LaTeX Font Info: External font `cmex10' loaded for size (Font) <12> on input line 190. ! Undefined control sequence. @title ...ular}{r} {\huge {\bf ejabberd \version \ }} \ \ {\huge Installa... l.190 \maketitle{ } ? ! Emergency stop. @title ...ular}{r} {\huge {\bf ejabberd \version \ }} \ \ {\huge Installa... l.190 \maketitle{ } End of file on the terminal! ====================
See full log if it matters:
* https://peter.fedorapeople.org/stuff/guide.log
The question is - what's missing on my machine from several thousand TeXLive packets available, and how to find the missing packet having only this data?
I'm not a professional in Latex but have you ever tried install the basic texlive scheme? Can you attach your .text file if I can find the problem. I use texmaker and most of the cases it tells me where the bug is.
Best regards!
2014-08-30 13:56 GMT-05:00 Peter Lemenkov lemenkov@gmail.com:
Hello All! Sorrty for the almost unrelated question but I'm experiencing troubles with TeXLive. I installed just texlive, texlive-comment, and hevea and tsee this while rebuilding a package's docs:
==================== .... LaTeX Font Info: External font `cmex10' loaded for size (Font) <17.28> on input line 190. LaTeX Font Info: External font `cmex10' loaded for size (Font) <12> on input line 190. ! Undefined control sequence. @title ...ular}{r} {\huge {\bf ejabberd \version \ }} \ \ {\huge Installa... l.190 \maketitle{ } ? ! Emergency stop. @title ...ular}{r} {\huge {\bf ejabberd \version \ }} \ \ {\huge Installa... l.190 \maketitle{ } End of file on the terminal! ====================
See full log if it matters:
The question is - what's missing on my machine from several thousand TeXLive packets available, and how to find the missing packet having only this data?
-- With best regards, Peter Lemenkov. -- devel mailing list devel@lists.fedoraproject.org https://admin.fedoraproject.org/mailman/listinfo/devel Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
2014-08-30 23:05 GMT+04:00 Kiara Navarro kiarakovalevsky@gmail.com:
I'm not a professional in Latex but have you ever tried install the basic texlive scheme?
I've just installed these three packages I mentioned above. I thought that''s enough:
texlive texlive-comment hevea
Can you attach your .text file if I can find the problem. I use texmaker and most of the cases it tells me where the bug is.
Here it is:
https://raw.githubusercontent.com/processone/ejabberd/14.07/doc/guide.tex
This is a full tree:
https://github.com/processone/ejabberd/tree/14.07/doc
On 08/30/2014 08:56 PM, Peter Lemenkov wrote:
Sorrty for the almost unrelated question but I'm experiencing troubles with TeXLive. I installed just texlive, texlive-comment, and hevea and tsee this while rebuilding a package's docs:
==================== .... LaTeX Font Info: External font `cmex10' loaded for size (Font) <17.28> on input line 190. LaTeX Font Info: External font `cmex10' loaded for size (Font) <12> on input line 190. ! Undefined control sequence. @title ...ular}{r} {\huge {\bf ejabberd \version \ }} \ \ {\huge Installa...
This means that \version is not defined.
Apparently, there should be a version.tex in the tarball, generated by "make release". However, it is missing, and since \include is used to read the file, not \input, there's only a warning, “No file version.tex.” in the build log, the build doesn't stop with an error at this point.
2014-08-31 0:56 GMT+04:00 Florian Weimer fweimer@redhat.com:
On 08/30/2014 08:56 PM, Peter Lemenkov wrote:
Sorrty for the almost unrelated question but I'm experiencing troubles with TeXLive. I installed just texlive, texlive-comment, and hevea and tsee this while rebuilding a package's docs:
==================== .... LaTeX Font Info: External font `cmex10' loaded for size (Font) <17.28> on input line 190. LaTeX Font Info: External font `cmex10' loaded for size (Font) <12> on input line 190. ! Undefined control sequence. @title ...ular}{r} {\huge {\bf ejabberd \version \ }} \ \ {\huge Installa...
This means that \version is not defined.
Apparently, there should be a version.tex in the tarball, generated by "make release". However, it is missing, and since \include is used to read the file, not \input, there's only a warning, “No file version.tex.” in the build log, the build doesn't stop with an error at this point.
Thanks! It works now!