#370: complex arguments in list \item[] need to be enclosed in braces.

This commit is contained in:
Georg Brandl 2010-04-06 19:06:43 +02:00
parent dea29d0f11
commit d66a6c4512
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
Release 0.6.6 (in development)
==============================
* #370: Fix handling of complex list item labels in LaTeX output.
* #374: Make the ``doctest_path`` config value of the doctest
extension actually work.

View File

@ -757,10 +757,10 @@ class LaTeXTranslator(nodes.NodeVisitor):
pass
def visit_term(self, node):
ctx = '] \\leavevmode'
ctx = '}] \\leavevmode'
if node.has_key('ids') and node['ids']:
ctx += '\\hypertarget{%s}{}' % self.idescape(node['ids'][0])
self.body.append('\\item[')
self.body.append('\\item[{')
self.context.append(ctx)
def depart_term(self, node):
self.body.append(self.context.pop())