diff options
Diffstat (limited to 'sphinx')
-rw-r--r-- | sphinx/writers/latex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 192207bce..f5f3b64b2 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1662,7 +1662,7 @@ class LaTeXTranslator(nodes.NodeVisitor): # if a footnote has been inserted once, it shouldn't be repeated # by the next reference if used: - if self.table or self.in_term: + if self.table or self.in_term or self.in_title: self.body.append('\\protect\\footnotemark[%s]' % num) else: self.body.append('\\footnotemark[%s]' % num) |