Open Lennonka opened 3 years ago
I would even appreciate a quick workaround if I'm missing something.
It would be nice if we can switch the base template for each latex_documents entry. I still don't understand it covers all of the cases. But it will resolve some of them.
Is your feature request related to a problem? Please describe.
I need to define different preambles for different
latex_documents
, because I need varied metainformation in maketitle. I can't define the metainformation in the source files, because the output is placed after the maketitle command. It might be also useful to have other settings inlatex_elements
defineable for different latex documents.Describe the solution you'd like
I want to define different settings for each document in
latex_documents
. The settings should allow differentlatex_elements
for each document and they might even include customtitle
,author
,theme
andtoctree_only
settings, which currently are inlatex_documents
.Example
Instead of:
I'd prefer to have:
where for example:
Describe alternatives you've considered
I've considered creating a project for every latex document which has to have a different latex_elements config ... but come on! :) I tried adding my metainformation in the source file, but it goes after maketitle, so no way. I don't have an option to modify how tex files are composed (templating).
Additional context
By metainformation I mean latex commands that work as variables and hold values used later in my custom maketitle that prints additional information about the document in the title -- examples of metainformation: doctype, confidentiality classification, document identifier.