Metadata-Version: 2.1
Name: SayTeX
Version: 0.1.6
Summary: Convert natural language math expressions into well-formatted LaTeX.
Home-page: https://saytex.xyz
Author: Arvid Lunnemark
Author-email: arvid.lunnemark@gmail.com
License: UNKNOWN
Project-URL: Documentation, https://saytex.readthedocs.io
Project-URL: Code, https://github.com/arvid220u/saytex
Description: # SayTeX
        Speak math, get LaTeX!
        
        SayTeX is a tool for converting spoken math into LaTeX equations. 
        
        Read the documentation at [saytex.readthedocs.io](https://saytex.readthedocs.io).
        
        Experience the demo at [demo.saytex.xyz](https://demo.saytex.xyz).
        
        ## Overview
        
        SayTeX is distributed as a Python package, enabling users of it to easily convert between transcribed spoken math and LaTeX.
        
        Paired with a speech recognition service, the SayTeX Python package can be used for dictating LaTeX, as shown in the [demo](https://demo.saytex.xyz).
        
        The package is [highly configurable](https://saytex.readthedocs.io/en/latest/advancedusage.html).
        
        ## Installation
        
        Install SayTeX using PyPI: `pip install saytex`.
        
        Read more in the [installation documentation](https://saytex.readthedocs.io/en/latest/gettingstarted.html#installation).
        
        ## Usage
        
        ```python
        from saytex import Saytex
        
        saytex_compiler = Saytex()
        
        print(saytex_compiler.to_latex("pi squared over six"))
        ```
        
        The above minimal example will print `\frac{\pi^2}{6}`. For advanced use, read the [documentation](https://saytex.readthedocs.io).
        
        ## Repository Structure
        
        - `blog`: A collection of Markdown files written during the second half of SayTeX development, in diary format.
        - `demo`: A [Flask](https://github.com/pallets/flask) web server powering the [demo website](https://demo.saytex.xyz).
        - `docs`: Documentation files, generated using [Sphinx](https://sphinx-doc.org), for the [documentation website](https://saytex.readthedocs.io).
        - `experimental`: Everything that is not currently in use by the project, but was experimented with during development and might become useful in the future.
        - `research-proposals`: Two PDF documents defining the goals of and plans for the SayTeX project.
        - `saytex`: The Python package. This is the core of the SayTeX project.
        - `syntax-specifications`: Specifications of the SayTeX Syntax.
        - `tests`: Tests for the Python package.
        - `website`: The static website served at [saytex.xyz](https://saytex.xyz).
        
        ## About
        
        SayTeX was developed during the academic year 2018-2019 as a research project by Arvid Lunnemark, under the supervision of Dr. Kyle Keane within the Department of Materials Science in the Interactive Materials Education Laboratory at MIT. The research proposals can be found in the folder `research-proposals`.
        
        All code is open source and licensed under the MIT License. Contributions are welcome.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
