Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

simpletex

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simpletex

Easy Latex Document Generation

  • 0.2.3
  • PyPI
  • Socket score

Maintainers
1

.. image:: https://badge.fury.io/py/simpletex.svg :target: https://badge.fury.io/py/simpletex

.. image:: https://readthedocs.org/projects/simpletex/badge/?version=latest :target: http://simpletex.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

.. image:: https://travis-ci.org/wgxli/simpletex.svg?branch=master :target: https://travis-ci.org/wgxli/simpletex :alt: Build Status

.. image:: https://coveralls.io/repos/github/wgxli/simpletex/badge.svg?branch=master :target: https://coveralls.io/github/wgxli/simpletex?branch=master :alt: Coverage Status

simpletex: Simple LaTeX Documents

simpletex is a Python library for automatically generating LaTeX documents. It is extremely easy to use:

.. code-block:: python

from simpletex import write, save
from simpletex.document import Document, Section, Subsection

with Document(size='11pt'):
    with Section('Section Name'):
        with Subsection('Subsection Name'):
            write('Hello World!')

save('filename.tex')

Full documentation can be found at http://simpletex.readthedocs.io/.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc