mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix #4648: latex: Now "rubric" elements are rendered as unnumbered section title
This commit is contained in:
parent
94cd25f885
commit
b6ba8cad10
1
CHANGES
1
CHANGES
@ -33,6 +33,7 @@ Incompatible changes
|
|||||||
:confval:`viewcode_follow_imported_members` (refs: #4035)
|
:confval:`viewcode_follow_imported_members` (refs: #4035)
|
||||||
* #1857: latex: :confval:`latex_show_pagerefs` does not add pagerefs for
|
* #1857: latex: :confval:`latex_show_pagerefs` does not add pagerefs for
|
||||||
citations
|
citations
|
||||||
|
* #4648: latex: Now "rubric" elements are rendered as unnumbered section title
|
||||||
|
|
||||||
Deprecated
|
Deprecated
|
||||||
----------
|
----------
|
||||||
|
@ -1252,7 +1252,7 @@ class LaTeXTranslator(nodes.NodeVisitor):
|
|||||||
if len(node.children) == 1 and node.children[0].astext() in \
|
if len(node.children) == 1 and node.children[0].astext() in \
|
||||||
('Footnotes', _('Footnotes')):
|
('Footnotes', _('Footnotes')):
|
||||||
raise nodes.SkipNode
|
raise nodes.SkipNode
|
||||||
self.body.append('\\paragraph{')
|
self.body.append('\\subsubsection*{')
|
||||||
self.context.append('}\n')
|
self.context.append('}\n')
|
||||||
self.in_title = 1
|
self.in_title = 1
|
||||||
|
|
||||||
|
@ -617,7 +617,7 @@ def test_reference_in_caption_and_codeblock_in_footnote(app, status, warning):
|
|||||||
assert '\\chapter{The section with a reference to {[}AuthorYear{]}}' in result
|
assert '\\chapter{The section with a reference to {[}AuthorYear{]}}' in result
|
||||||
assert ('\\sphinxcaption{The table title with a reference'
|
assert ('\\sphinxcaption{The table title with a reference'
|
||||||
' to {[}AuthorYear{]}}' in result)
|
' to {[}AuthorYear{]}}' in result)
|
||||||
assert '\\paragraph{The rubric title with a reference to {[}AuthorYear{]}}' in result
|
assert '\\subsubsection*{The rubric title with a reference to {[}AuthorYear{]}}' in result
|
||||||
assert ('\\chapter{The section with a reference to \\sphinxfootnotemark[5]}\n'
|
assert ('\\chapter{The section with a reference to \\sphinxfootnotemark[5]}\n'
|
||||||
'\\label{\\detokenize{index:the-section-with-a-reference-to}}'
|
'\\label{\\detokenize{index:the-section-with-a-reference-to}}'
|
||||||
'%\n\\begin{footnotetext}[5]\\sphinxAtStartFootnote\n'
|
'%\n\\begin{footnotetext}[5]\\sphinxAtStartFootnote\n'
|
||||||
|
Loading…
Reference in New Issue
Block a user