diff options
author | Andrew Dunning <adunning@users.noreply.github.com> | 2019-01-23 00:11:13 -0500 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-01-22 21:11:13 -0800 |
commit | 3ad225571706f58b18a6799fa22511e787109253 (patch) | |
tree | 310d3c1ba6253a4f4605887a1d4721f97cb7f48c | |
parent | 690193e4e5fd7449fe44bc870a74d2496a5d8c0e (diff) | |
download | pandoc-3ad225571706f58b18a6799fa22511e787109253.tar.gz |
LaTeX template: Respect `numbersections` for books (#5235)
Ensure that `\part` and `\chapter` are only numbered if `numbersections` is set. To return to the previous behaviour, use `-V numbersections -V secnumdepth=0`.
Notes on secnumdepth:
1 = Number `\section`
0 = Number `\chapter`
-1 = Number `\part`
-2 = No numbering
-rw-r--r-- | data/templates/default.latex | 2 | ||||
-rw-r--r-- | test/lhs-test.latex | 2 | ||||
-rw-r--r-- | test/lhs-test.latex+lhs | 2 | ||||
-rw-r--r-- | test/writer.latex | 2 | ||||
-rw-r--r-- | test/writers-lang-and-dir.latex | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/data/templates/default.latex b/data/templates/default.latex index 01e435b43..f76f25ca5 100644 --- a/data/templates/default.latex +++ b/data/templates/default.latex @@ -277,7 +277,7 @@ $endif$ $if(numbersections)$ \setcounter{secnumdepth}{$if(secnumdepth)$$secnumdepth$$else$5$endif$} $else$ -\setcounter{secnumdepth}{0} +\setcounter{secnumdepth}{-2} $endif$ $if(beamer)$ $else$ diff --git a/test/lhs-test.latex b/test/lhs-test.latex index f18af737c..da7dfe6a0 100644 --- a/test/lhs-test.latex +++ b/test/lhs-test.latex @@ -79,7 +79,7 @@ \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} -\setcounter{secnumdepth}{0} +\setcounter{secnumdepth}{-2} % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph diff --git a/test/lhs-test.latex+lhs b/test/lhs-test.latex+lhs index dc6f2803b..e959a5e7c 100644 --- a/test/lhs-test.latex+lhs +++ b/test/lhs-test.latex+lhs @@ -44,7 +44,7 @@ \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} -\setcounter{secnumdepth}{0} +\setcounter{secnumdepth}{-2} % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph diff --git a/test/writer.latex b/test/writer.latex index d801e1590..04ba7cd15 100644 --- a/test/writer.latex +++ b/test/writer.latex @@ -57,7 +57,7 @@ \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} -\setcounter{secnumdepth}{0} +\setcounter{secnumdepth}{-2} % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph diff --git a/test/writers-lang-and-dir.latex b/test/writers-lang-and-dir.latex index bb3575771..8c75341e3 100644 --- a/test/writers-lang-and-dir.latex +++ b/test/writers-lang-and-dir.latex @@ -42,7 +42,7 @@ \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} -\setcounter{secnumdepth}{0} +\setcounter{secnumdepth}{-2} % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph |