mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Do not lower() citeid in latex writer's bibitems.
This commit is contained in:
@@ -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]))
|
||||
|
||||
Reference in New Issue
Block a user