Wrappers for calling LaTeX/building LaTeX documents.
Project description
Documentation can be found at https://pythonhosted.org/latex .
Allows calling LaTeX from Python without leaving a mess. Similar to the (officially obsolete) tex package, whose successor is not PyPi-installable:
min_latex = (r"\documentclass{article}"
r"\begin{document}"
r"Hello, world!"
r"\end{document}")
from latex import build_pdf
# this builds a pdf-file inside a temporary directory
pdf = build_pdf(min_latex)
# look at the first few bytes of the header
print bytes(pdf)[:10]
Also comes with support for using Jinja2 templates to generate LaTeX files.
make_env can be used to create an Environment that plays well with LaTex:
Variables can be used in a LaTeX friendly way: Hello, \VAR{name|e}. Note that autoescaping is off. Blocks are creating using the block macro: \BLOCK{if weather is 'good'} Hooray. \BLOCK{endif} \#{comments are supported as well} %# and so are line comments To keep things short, line statements can be used: %- if weather is good Yay. %- endif
Example use
from jinja2.loaders import FileSystemLoader
from latex.jinja2 import make_env
env = make_env(loader=FileSystemLoader('.'))
tpl = env.get_template('doc.latex')
print(tpl.render(name="Alice"))
The base.latex demonstrates how \BLOCK{...} is substituted for {% ... %}:
\documentclass{article}
\begin{document}
\BLOCK{block body}\BLOCK{endblock}
\end{document}
Finally, doc.latex shows why the %- syntax is usually preferable:
%- extends "base.latex"
%- block body
Hello, \VAR{name|e}.
%- endblock
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
latex-0.7.0.tar.gz
(6.5 kB
view details)
File details
Details for the file latex-0.7.0.tar.gz
.
File metadata
- Download URL: latex-0.7.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf10c3fe27e9f3adccebc12e90ec239c86dcba101b89221f6775918211482a79 |
|
MD5 | 13bcf3dc19136a535dd455f6546635d6 |
|
BLAKE2b-256 | e3f3c2562ee509faadaaf4f9d5b9491de146c6522ed2843dcecfd4f8e1a72f1d |