No project description provided
Project description
Description
This is a python-module to create LaTex's *.tex
fail.
Install module
You can install this module by command:
poetry add latex-gen-small==0.1.3
Also you can use:
pyproject.toml
poetry.lock
from hw2/examples
of https://github.com/medphisiker/python_advanced_2024
.
You can copy this files to you project's repository and than run command:
cd to\your\project\folder
poetry install
Than you activate poetry virtual environment by command:
poetry shell
We are in our poetry virtual env now.
Create a latex file with a table
Now we can create this python scrypt:
from latex_gen_small import latex_gen_small as tex_gen
if __name__ == "__main__":
data = [
["Header 1", "Header 2", "Header 3"],
["Data 1", "Data 2", "Data 3"],
["Data 4", "Data 5", "Data 6"],
]
latex_code = tex_gen.create_latex_table(data)
latex_code = tex_gen.make_latex_document(latex_code)
tex_gen.write_to_file(latex_code, "main_table.tex")
We can save it as table_gen.py
.
Then we can run it by command:
python table_gen.py
And we get main_table.tex
with LaTex code to create a table.
Create a pdf file from our latex file with table
We can use any LaTex what we love to create a pdf from Latex source.
Also I prepared a useful Docker image to run Docker container to create pdf files from LaTex source *.tex
files.
You can get this file from https://github.com/medphisiker/python_advanced_2024
by this relative path hw2/examples/Dockerfile
.
To build Docker image run this command:
docker build -t pdflatex:0.0.1 .
Then we can run Docker container by this command:
docker run \
--rm \
-it \
-v "${PWD}:/root/shared_folder" \
pdflatex:0.0.1 \
pdflatex main_table.tex
And we get output files from it:
- main_table.aux
- main_table.log
- main_table.pdf - the pdf file with our LaTex table
Create a latex file with a table and image
We want to create a LaTex file with a table and some picture.
We save our pictures ti a folder ./images
, for example mesh.png
.
Now we can create this python scrypt:
from latex_gen_small import latex_gen_small as tex_gen
if __name__ == "__main__":
data = [
["Header 1", "Header 2", "Header 3"],
["Data 1", "Data 2", "Data 3"],
["Data 4", "Data 5", "Data 6"],
]
image_name = "mesh"
latex_code_table = tex_gen.create_latex_table(data)
latex_code_image = tex_gen.create_latex_image(image_name)
latex_code = latex_code_table, latex_code_image
latex_code = tex_gen.latex_code_union(latex_code)
latex_code = tex_gen.make_latex_document(latex_code)
tex_gen.write_to_file(latex_code, "main_table_picture.tex")
We can save it as table_picture_gen.py
.
Then we can run it by command:
python table_picture_gen.py
And we get main_table.tex
with LaTex code to create a table.
Create a pdf file from our latex file with table and image
Then we can run Docker container by this command:
docker run \
--rm \
-it \
-v "${PWD}:/root/shared_folder" \
pdflatex:0.0.1 \
pdflatex main_table_picture.tex
And we get output files from it:
- main_table_picture.tex.aux
- main_table_picture.tex.log
- main_table_picture.tex.pdf - the pdf file with our LaTex table and picture
mesh.png
.
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
Built Distribution
File details
Details for the file latex_gen_small-0.1.4.tar.gz
.
File metadata
- Download URL: latex_gen_small-0.1.4.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.11 Linux/5.15.0-88-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e05168a6225f0247c7f7e9c7081307509cde697cc3d60c39e13f7e7760a93a2 |
|
MD5 | d1361e21a54d886442b6f984c47af716 |
|
BLAKE2b-256 | 2dddd977168dc40ef46d435ff2707bbdc30974f50b570209d9a90fe853bd2cd1 |
File details
Details for the file latex_gen_small-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: latex_gen_small-0.1.4-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.11 Linux/5.15.0-88-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddca3b2e7e9ebb26358027fb6d21469fcb64ac5d165f64b1eb51884ed5fb2026 |
|
MD5 | 1e323c8369c51693b29eb9c702d3566e |
|
BLAKE2b-256 | 240b63e986571604dfaf3c952cc3cec3bd43a00d18e2721705061f075841dc3a |