diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | pandoc/templates/elenq-article.latex | 5 | ||||
-rw-r--r-- | pandoc/templates/elenq-book.latex | 4 |
3 files changed, 11 insertions, 0 deletions
@@ -38,6 +38,8 @@ author: Author's name license: License of the document ``` +Templates also accept any metadata valid for Pandoc. + > NOTE: Templates automatically put the copyleft symbol in the PDF, they are > only prepared for copyleft licenses. diff --git a/pandoc/templates/elenq-article.latex b/pandoc/templates/elenq-article.latex index 50ec24a..c6d88b4 100644 --- a/pandoc/templates/elenq-article.latex +++ b/pandoc/templates/elenq-article.latex @@ -24,6 +24,11 @@ % author: Author's name % license: License of the document % +% It also accepts some optional metadata: +% +% toc: true | false # Activate table of contents (defaults to false) +% abstract: "Content of the abstract" +% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[a4paper,11pt]{$documentclass$} diff --git a/pandoc/templates/elenq-book.latex b/pandoc/templates/elenq-book.latex index cfb7d7f..3dcf2a3 100644 --- a/pandoc/templates/elenq-book.latex +++ b/pandoc/templates/elenq-book.latex @@ -24,6 +24,10 @@ % author: Author's name % license: License of the document % +% It also accepts some optional metadata: +% +% toc: true | false # Activate table of contents (defaults to true) +% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[a4paper,11pt]{$documentclass$} |