From 95021fc04652c6e02c81cb454b03237c3616eb49 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 11 Jun 2024 17:07:54 +0100 Subject: Feat: PDF: fine-grained control of lists of tables, figures etc --- ChangeLog.md | 4 +++- structure/book/en/99-end.tex | 27 +++++++++++++++++++++------ structure/book/pt-br/99-end.tex | 27 +++++++++++++++++++++------ 3 files changed, 45 insertions(+), 13 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 583d682..44edfac 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,6 @@ # ChangeLog -## v0.1.4 - unreleased +## v0.1.4 - 2024-06-11 ### Fixes @@ -9,6 +9,8 @@ ### Features +* [x] Fine-grained control of lists of tables, + figures etc. * [x] Scaffolding to support a "Recent changes" section in the compiled book. * [x] Documentation: Bookup features, and minor diff --git a/structure/book/en/99-end.tex b/structure/book/en/99-end.tex index fb48277..e0facbc 100644 --- a/structure/book/en/99-end.tex +++ b/structure/book/en/99-end.tex @@ -1,17 +1,28 @@ % Bookdown LaTeX footer file % Put all indexes in a final chapter +\ifx\BookupListIndex\undefined +\else \chapter{Index} -%Lists of tables, figures, definitions and etimologies. -%Lists of tables and figures. -Lists of tables, figures etc. +\ifx\BookupListElements\undefined +\else + %Lists of tables, figures, definitions and etimologies. + %Lists of tables and figures. + Lists of tables, figures etc. +\fi % Print the list of tables -\listoftables +\ifx\BookupListTables\undefined +\else + \listoftables +\fi % Print the list of figures -\listoffigures +\ifx\BookupListFigures\undefined +\else + \listoffigures +\fi % Print the list of definitions % See https://latex.org/forum/viewtopic.php?t=17679 @@ -32,8 +43,12 @@ Lists of tables, figures etc. \fi % Print the index -\printindex +\ifx\BookupListWordIndex\undefined +\else + \printindex +\fi % ChangeLog % This is commented until a LaTeX version is available %\IfFileExists{snippets/changes.md}{\input{snippets/changes.md}}{} +\fi diff --git a/structure/book/pt-br/99-end.tex b/structure/book/pt-br/99-end.tex index 098fdd8..c7e4a38 100644 --- a/structure/book/pt-br/99-end.tex +++ b/structure/book/pt-br/99-end.tex @@ -1,17 +1,28 @@ % Bookdown LaTeX footer file % Put all indexes in a final chapter +\ifx\BookupListIndex\undefined +\else \chapter{Índice} -%Listas de tabelas, figuras, definições e etimologias. -%Listas de tabelas e figuras. -Listas de tabelas, figuras etc. +\ifx\BookupListElements\undefined +\else + %Listas de tabelas, figuras, definições e etimologias. + %Listas de tabelas e figuras. + Listas de tabelas, figuras etc. +\fi % Print the list of tables -\listoftables +\ifx\BookupListTables\undefined +\else + \listoftables +\fi % Print the list of figures -\listoffigures +\ifx\BookupListFigures\undefined +\else + \listoffigures +\fi % Print the list of definitions % See https://latex.org/forum/viewtopic.php?t=17679 @@ -32,8 +43,12 @@ Listas de tabelas, figuras etc. \fi % Print the index -\printindex +\ifx\BookupListWordIndex\undefined +\else + \printindex +\fi % ChangeLog % This is commented until a LaTeX version is available %\IfFileExists{snippets/changes.md}{\input{snippets/changes.md}}{} +\fi -- cgit v1.2.3