All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tools.rst2xetex.py Maven / Gradle / Ivy

There is a newer version: 2.4
Show newest version
#!/usr/bin/env python

# $Id: rst2xetex.py 7038 2011-05-19 09:12:02Z milde $
# Author: Guenter Milde
# Copyright: This module has been placed in the public domain.

"""
A minimal front end to the Docutils Publisher, producing XeLaTeX source code.
"""

try:
    import locale
    locale.setlocale(locale.LC_ALL, '')
except:
    pass

from docutils.core import publish_cmdline

description = ('Generates XeLaTeX documents from standalone reStructuredText '
               'sources. '
               'Reads from  (default is stdin) and writes to '
               ' (default is stdout).  See '
               ' for '
               'the full reference.')

publish_cmdline(writer_name='xetex', description=description)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy