I am using pylatex in python to generate PDFs. I want to add a Page border in the generated PDF but I am not able to do so. I didn't found any reference for adding border in the pylatex documentation. Is there any way that can work? Here are the geometry options for Document class:
geometry_options = {
"head": "40pt",
"margin": "0.5in",
"bottom": "0.6in",
"includeheadfoot": True
}
doc = Document(geometry_options=geometry_options)
Let me know if you need more details.