We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5a4e39 commit 087c0b7Copy full SHA for 087c0b7
1 file changed
README.md
@@ -32,14 +32,23 @@ Convert a `numpy.NDArray` to various LaTeX forms.
32
1 & 2 & 3 \\
33
4 & 5 & 6 \\
34
\end{bmatrix}
35
+>>> print(atx.to_tabular(A))
36
+\begin{tabular}{c c c}
37
+\toprule
38
+Col 1 & Col 2 & Col 3 \\
39
+\midrule
40
+1 & 2 & 3 \\
41
+4 & 5 & 6 \\
42
+\bottomrule
43
+\end{tabular}
44
```
45
46
Inspired by [@josephcslater](https://github.com/josephcslater)'s
47
[array_to_latex](https://github.com/josephcslater/array_to_latex).
48
49
## Features
50
-- Support for different matrix environment delimiters, (`bmatrix`, `pmatrix`, etc.)
51
+- Support for matrix environments with different delimiters (`bmatrix`, `pmatrix`, etc.).
52
- Support for tabular environments.
53
- Support for builtin number formats (`:.2f`, `:.3e`, etc.).
54
- Fully tested and typed.
0 commit comments