ArrayTeX
Project description
ArrayTeX
Convert a numpy.NDArray to various LaTeX forms.
>>> import numpy as np
>>> import arraytex as atx
>>> A = np.array([[1, 2, 3], [4, 5, 6]])
>>> print(atx.to_matrix(A))
\begin{bmatrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
\end{bmatrix}
>>> print(atx.to_tabular(A))
\begin{tabular}{c c c}
\toprule
Col 1 & Col 2 & Col 3 \\
\midrule
1 & 2 & 3 \\
4 & 5 & 6 \\
\bottomrule
\end{tabular}
Inspired by @josephcslater's array_to_latex.
Features
- Support for matrix environments with different delimiters (
bmatrix,pmatrix, etc.). - Support for tabular environments.
- Support for builtin number formats (
:.2f,:.3e, etc.). - Fully tested and typed.
Requirements
python >= 3.8
Installation
You can install ArrayTeX via pip from PyPI:
$ pip install arraytex
Usage
Please see the docs for more information.
Contributing
Contributions are very welcome. To learn more, see the Contributor Guide.
License
Distributed under the terms of the MIT license, ArrayTeX is free and open source software.
Issues
If you encounter any problems, please file an issue along with a detailed description.
Credits
This project was generated from @cjolowicz's Hypermodern Python Cookiecutter template.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arraytex-0.0.9.tar.gz.
File metadata
- Download URL: arraytex-0.0.9.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d342c0b86afb7c194a55dbde4e999aedf3430db0855e6b14c976c752ff351dba
|
|
| MD5 |
84ce2c30b138fb16d040ea294b86b3dd
|
|
| BLAKE2b-256 |
401056dd8a8bd7ef962d935281f740c9ddbbdcac6a96cb3ea96d66bb242b5db4
|
File details
Details for the file arraytex-0.0.9-py3-none-any.whl.
File metadata
- Download URL: arraytex-0.0.9-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6d5ec3a1d08cf44ab2abe09ef9cc644efb95f3a44a37c3c4f3497c64965acff
|
|
| MD5 |
ada84a250e72d06cfb71ca14bfd49ee2
|
|
| BLAKE2b-256 |
36f5db755418bb71fbcb589639f360caaa345670bb2b8cfca1602d0877749694
|