diff --git a/modules.html b/modules.html index 3eebdc9..7186e60 100644 --- a/modules.html +++ b/modules.html @@ -341,16 +341,21 @@ guessing for text and numbers; pandas: using the internal pandas LaTeX renderer)
Export the document to a PDF file using LaTeX.
file_path (str
) – The path to save the PDF file to
font_family (Literal
[None
, 'serif'
, 'sans-serif'
]) – Overwrites the front family for figures and the template
table_renderer (Literal
['pandas'
, 'simple'
]) – The renderer for tables (simple: renderer with column type
+guessing for text and numbers; pandas: using the internal pandas LaTeX renderer)
latex_template_path (str
) – Path to a LaTeX template file. The
expression <!–CONTENT–> will be replaced by the generated content.
If no path is provided a default template is used.
fields_dict (dict
[str
, str
]) – A dictionary with field names as keys and content as values
+replacing the placeholders <!–KEY–> in the template.
figure_scale (float
) – Scaling factor for the figure size
engine (Literal
['pdflatex'
, 'lualatex'
, 'xelatex'
, 'tectonic'
]) – LaTeX engine (pdflatex, lualatex, xelatex or tectonic)
injects a content string into a template. The placeholder <!–CONTENT–> +pyladoc.inject_to_template(fields_dict, template_path='', internal_template='', template_string='') +
injects content fields into a template. The placeholder <!–CONTENT–> will be replaced by the content. If the placeholder is prefixed with a ‘%’ comment character, this character will be replaced as well.
fields_dict (dict
[str
, str
]) – A dictionary with field names as keys and content as values
template_path (str
) – Path to a template file
internal_template (str
) – Path to a internal default template
template_string (str
) – A template string to use directly