Write AAS journal articles as Python programs.
This library extends PyLaTeX with the pieces of the AASTeX class used by the journals of the American Astronomical Society: titles, authors and their affiliations, acronyms, sections, figures, and bibliographies.
In a normal manuscript, the numbers in the prose and the figures beside them are copied from an analysis by hand, and they start drifting from that analysis the moment it changes. Writing the article as a program removes the copying step: figures are generated by the same code that produced the result, and quantities are defined as LaTeX macros computed from Python values, so the text cannot disagree with the analysis behind it.
doc.set_variable_quantity(
name="speedOfLight",
value=astropy.constants.c.to(u.km / u.s),
scientific_notation=True,
)The prose then refers to \speedOfLight, and the compiled article shows whatever the code
computed, correctly formatted with its units.
aastex is available on PyPI and can be installed using pip:
pip install aastexCompiling an article also requires a LaTeX installation providing the AASTeX class dependencies. On Debian and Ubuntu:
sudo apt-get install texlive-publishers texlive-science cm-super latexmkimport pathlib
import aastex
doc = aastex.Document()
doc.append(aastex.Title("An Interesting Article"))
doc += [
aastex.Author(
name="Jane Doe",
affiliation=aastex.Affiliation("Fancy University"),
email="jane.doe@fancy.edu",
)
]
section = aastex.Section("Introduction")
section.append("Some text.")
doc.append(section)
doc.generate_pdf(pathlib.Path("an_interesting_article"))The documentation walks through a complete example that adds figures, acronyms, computed variables, and a bibliography.
Document— the article itself.generate_pdf()writes the.texfile, saves every figure beside it, copies in the AASTeX class and bibliography style, and compiles the result.Title,Author,Affiliation,Abstract,Section— the parts of a manuscript, which can be referenced from the prose by formatting them into a string, so section and figure numbers are never written by hand.Figure,FigureStar,Fig,Gridline— figures built directly from matplotlib figures viaadd_fig(), or from existing image files viaadd_image().Variable— a numeric value from the analysis, exposed to the prose as a LaTeX macro.Acronym— an acronym that expands on first use and is abbreviated afterwards.Bibliography— the reference list, from a BibTeX file.
The AAS submission system
requires every file of a manuscript at the same directory level, since it cannot parse
subdirectories. Document.generate_archive() compiles the article and collects the .tex
file, the .bbl file required by the AAS conversion software, the class and bibliography
style files, and every figure into a flat archive ready to upload:
doc.generate_archive(pathlib.Path("an_interesting_article"), bibliography="sources.bib")