Do not lower() citeid in latex writer's bibitems.

This commit is contained in:
Matthias C. M. Troffaes
2013-10-01 08:37:48 +01:00
parent 79191487ca
commit f658625434

View File

@@ -379,7 +379,7 @@ class LaTeXTranslator(nodes.NodeVisitor):
widest_label = bi[0]
self.body.append(u'\n\\begin{thebibliography}{%s}\n' % widest_label)
for bi in self.bibitems:
target = self.hypertarget(bi[2] + ':' + bi[3].lower(),
target = self.hypertarget(bi[2] + ':' + bi[3],
withdoc=False)
self.body.append(u'\\bibitem[%s]{%s}{%s %s}\n' %
(bi[0], self.idescape(bi[0]), target, bi[1]))