Skip to content

Commit a0000fe

Browse files
committed
Updated HTML and LaTeX processing so that subsections no longer get section numbers.
For HTML output it was enough to change max_section_depth from 3 to 2. For LaTeX output I post-processed the .tex file to change subsection to subsection*. (There's probably a nicer way to do this.) svn/trunk@6750
1 parent cf928b0 commit a0000fe

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

Makefile.doc

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ BIBTEX_FILE = ../refs.bib
2828
PYTHON = python
2929
PDFLATEX = TEXINPUTS=".:..:ucs:" pdflatex -halt-on-error
3030
EXAMPLES = ../examples.py
31+
LATEXHACKS = ../latexhacks.py
3132
RST = ../rst.py
3233
RST2REF = $(RST) --ref
3334
RST2HTML = $(RST) --html
@@ -93,7 +94,8 @@ clean_up:
9394
xmllint --noout --dtdvalid $(DOCBOOKDTD) $@
9495

9596
%.tex: %.rst $(REF) revision.rst
96-
$(RST2LATEX) $(REF) $<
97+
$(RST2LATEX) $(REF) $<
98+
$(LATEXHACKS) $@
9799

98100
revision.rst: $(CHAPTERS)
99101
echo "This document is" > revision.rst

en/ch02.rst

+3
Original file line numberDiff line numberDiff line change
@@ -1694,6 +1694,9 @@ Summary
16941694
Further Reading
16951695
---------------
16961696

1697+
Learn more about functions in Python by reading Chapter 4 of
1698+
[Lutz2003LP]_.
1699+
16971700
Archives of the CORPORA mailing list.
16981701

16991702
[Woods86]_

latexhacks.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env python
2+
# Post-process latex output in-place
3+
4+
import sys
5+
import re
6+
7+
# load the file
8+
file = open(sys.argv[1])
9+
contents = file.read()
10+
file.close()
11+
12+
# modify it
13+
contents = re.sub(r'subsection{', r'subsection*{', contents)
14+
15+
# save the file
16+
file= open(sys.argv[1], 'w')
17+
file.write(contents)
18+
file.close()

rst.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ def visit_doctest_block(self, node):
951951
#////////////////////////////////////////////////////////////
952952
# Sections
953953
#////////////////////////////////////////////////////////////
954-
max_section_depth = 3
954+
max_section_depth = 2
955955
no_section_numbers_in_preface = True
956956
TOP_SECTION = 'chapter'
957957

0 commit comments

Comments
 (0)