Wei-Wei Guo schrieb:
> Hi everyone,
> 
> I have used Sphinx as my reading notes system for a few months. It is 
> excellent.
> 
> I get a problem today. I used to build my rst files into HTML and read them 
> in Firefox. Everything was fine.
> When I tried to build my notes into a LaTeX file, it crushed. Here is the 
> command and the error info:
> 
>     $ sphinx-build -b latex ./notes ./release/note.pdf
>     ...
>     resolving references...
>     writing... Exception occurred:
>       File "/usr/lib/python2.5/site-packages/sphinx/latexwriter.py", line 
> 619, in visit_entry
>         raise NotImplementedError('Column or row spanning cells are '
>     NotImplementedError: Column or row spanning cells are not implemented.
>     The full traceback has been saved in /tmp/sphinx-err-ultdDJ.log, if you 
> want to report the issue to the author.
>     Please also report this if it was a user error, so that a better error 
> message can be provided next time.
>     Send reports to [email protected]. Thanks!
> 
> I write my notes in Chinese and all those note files are UTF-8. I'm wandering 
> whether the error is caused by
> the LaTeX template not compatible with Chinese. If it is, the problem is easy 
> to solve.

Like the error message says, you have a table with cells that span multiple
columns or rows, like this:

+----------+----------------+
| cell    | cell         |
+----------+----------------+
| column spanning cell |
+---------------------------+

Sphinx' latex writer does not yet support this.

Georg

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to