This project is a part of my bachelor thesis which deals with data representation using Python and LaTeX. You can find the source code on my GitHub.
The idea behind this package prototype is that generating LaTeX documents containing scientific data from Python should not be difficult and require many steps. Currently the package supports the creation of simple tables and two types of plots: scatter plots and line plots. The package uses the PyLaTeX package to handle the document creation and compilation process. The main data sources are arrays and data tables from the popular packages numpy
and pandas
. A major inspiration for the module syntax is the matplotlib.pyplot
module, which allows plots to be created in a few lines of code. The tables are created using the tblr
environment from the tabularray
package. The plots are created using the tikzpicture
/ axis
environment from the tikz
/ pgfplots
package.
Examples with results can be found in the documentation.
import data2latex as dtol
dtol.section("Data2LaTeX")
dtol.text("This project is part of my bachelor thesis which deals with data representation using Python and LaTeX.")
dtol.finish("simple_features")
import data2latex as dtol
data = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
dtol.table(data)
dtol.finish("simple_table")
import data2latex as dtol
X = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Y = [84, 13, 94, 37, 80, 89, 90, 45, 55, 26, 92]
dtol.plot(X, Y, line="-", mark="*")
dtol.finish("simple_plot")
python -m pip install --upgrade pip
python -m pip install --upgrade data2latex
python -m venv .venv
./.venv/Scripts/activate
python -m pip install --upgrade pip
python -m pip install .[dev]
sphinx-apidoc -o docs src/data2latex
./docs/make html
python clear.py
python -m pip install --upgrade build
python -m build
python -m pip install --upgrade twine
python -m twine upload dist/*