diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-11 14:14:40 +0100 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-11 14:14:40 +0100 |
commit | be4adbd61ad75572aabf613e5b9e9a54534dcbaf (patch) | |
tree | c4512274b76d8c9237b308d80deece300d6fc77d /structure | |
parent | 5b324d5bae27a5c81748f2d8988db26459b1536a (diff) | |
download | bookup-be4adbd61ad75572aabf613e5b9e9a54534dcbaf.tar.gz bookup-be4adbd61ad75572aabf613e5b9e9a54534dcbaf.tar.bz2 |
Feat: some more partial documentation improvements
Diffstat (limited to 'structure')
-rw-r--r-- | structure/book/en/99-biblio.md | 9 | ||||
-rw-r--r-- | structure/book/en/99-end.md | 19 | ||||
-rw-r--r-- | structure/book/en/99-end.tex | 4 | ||||
-rw-r--r-- | structure/book/pt-br/99-biblio.md | 9 | ||||
-rw-r--r-- | structure/book/pt-br/99-end.md | 19 | ||||
-rw-r--r-- | structure/book/pt-br/99-end.tex | 4 |
6 files changed, 46 insertions, 18 deletions
diff --git a/structure/book/en/99-biblio.md b/structure/book/en/99-biblio.md deleted file mode 100644 index 83817b6..0000000 --- a/structure/book/en/99-biblio.md +++ /dev/null @@ -1,9 +0,0 @@ -\backmatter - -<!-- Neat way to have HTML comments: https://stackoverflow.com/a/43902043 --> -<!-- This seems not to be the case anymore: https://bookdown.org/yihui/bookdown/citations.html --> -<script type="text/html"> -`r if (knitr::is_html_output()) '# Bibliografia'` -</script> - -# Bibliography diff --git a/structure/book/en/99-end.md b/structure/book/en/99-end.md new file mode 100644 index 0000000..d0c8b8d --- /dev/null +++ b/structure/book/en/99-end.md @@ -0,0 +1,19 @@ +\backmatter + +<!-- Neat way to have HTML comments: https://stackoverflow.com/a/43902043 --> +<!-- This seems not to be the case anymore: https://bookdown.org/yihui/bookdown/citations.html --> +<script type="text/html"> +`r if (knitr::is_html_output()) '# Bibliography'` +</script> + +# Bibliography + +<!-- Neat way to have HTML comments: https://stackoverflow.com/a/43902043 --> +<!-- This seems not to be the case anymore: https://bookdown.org/yihui/bookdown/citations.html --> +<script type="text/html"> +```{r echo=FALSE, results='asis'} +if (knitr::is_html_output()) { + cat(readLines('snippets/changes.md'), sep='\n') +} +``` +</script> diff --git a/structure/book/en/99-end.tex b/structure/book/en/99-end.tex index 0cf238b..fb48277 100644 --- a/structure/book/en/99-end.tex +++ b/structure/book/en/99-end.tex @@ -33,3 +33,7 @@ Lists of tables, figures etc. % Print the index \printindex + +% ChangeLog +% This is commented until a LaTeX version is available +%\IfFileExists{snippets/changes.md}{\input{snippets/changes.md}}{} diff --git a/structure/book/pt-br/99-biblio.md b/structure/book/pt-br/99-biblio.md deleted file mode 100644 index c5385cb..0000000 --- a/structure/book/pt-br/99-biblio.md +++ /dev/null @@ -1,9 +0,0 @@ -\backmatter - -<!-- Neat way to have HTML comments: https://stackoverflow.com/a/43902043 --> -<!-- This seems not to be the case anymore: https://bookdown.org/yihui/bookdown/citations.html --> -<script type="text/html"> -`r if (knitr::is_html_output()) '# Bibliografia'` -</script> - -# Bibliografia diff --git a/structure/book/pt-br/99-end.md b/structure/book/pt-br/99-end.md new file mode 100644 index 0000000..ba2d787 --- /dev/null +++ b/structure/book/pt-br/99-end.md @@ -0,0 +1,19 @@ +\backmatter + +<!-- Neat way to have HTML comments: https://stackoverflow.com/a/43902043 --> +<!-- This seems not to be the case anymore: https://bookdown.org/yihui/bookdown/citations.html --> +<script type="text/html"> +`r if (knitr::is_html_output()) '# Bibliografia'` +</script> + +# Bibliografia + +<!-- Neat way to have HTML comments: https://stackoverflow.com/a/43902043 --> +<!-- This seems not to be the case anymore: https://bookdown.org/yihui/bookdown/citations.html --> +<script type="text/html"> +```{r echo=FALSE, results='asis'} +if (knitr::is_html_output()) { + cat(readLines('snippets/changes.md'), sep='\n') +} +``` +</script> diff --git a/structure/book/pt-br/99-end.tex b/structure/book/pt-br/99-end.tex index 1959646..098fdd8 100644 --- a/structure/book/pt-br/99-end.tex +++ b/structure/book/pt-br/99-end.tex @@ -33,3 +33,7 @@ Listas de tabelas, figuras etc. % Print the index \printindex + +% ChangeLog +% This is commented until a LaTeX version is available +%\IfFileExists{snippets/changes.md}{\input{snippets/changes.md}}{} |