Metadata-Version: 1.1
Name: pyslides
Version: 0.9.23
Summary: Python-based tool for presentation-ready slides
Home-page: UNKNOWN
Author: Giuseppe Romano
Author-email: romanog@mit.edu
License: GPLv2
Description-Content-Type: UNKNOWN
Description: Description
        ===========
        
        Python-based tool for presentation-ready slides
        
        Installation
        ============
        
        .. code-block:: shell
        
          pip install pyslides
        
        
        Requirements
        ============
        
        ``python 2.7``
        latex package ``type1cm`` 
        
        
        Community
        =========
        
        For bug reports and new ideas, feel free to join the  `Mailing list <https://groups.google.com/forum/#!forum/pyslides>`_
        
        Usage
        =====
        
        .. code-block:: python
        
        
          from pyslides.presentation import Presentation as P
        
          P = P(biblio_file='https://www.dropbox.com/s/6x55qbs8p0fb3yl/biblio.bib?dl=1')
        
          P.add_slide(model = 'title', title = 'An example of presentation with PySlides',\
                                       author      = 'Name',\
                                       affiliation = 'Affiliation')
        
          P.add_slide(model='one_figure',\
                     figure = 'https://wesaturate.s3.amazonaws.com/photos/zbihcy_silvestre90.jpg',\
                     title='Example')
        
          P.add_citation('einstein1935can')
        
        
          P.add_slide()
          P.add_bullets(y = 0.5,\
                        text = [r'''Cats are cute''',r'''Especially this one'''])
        
          P.add_text(x = 0.5,\
                     y = 0.1,\
                     color='red',\
                     text = 'Example of adding text')
        
          P.add_figure(x=0.7,y=0.5,L=0.3,filename='https://wesaturate.s3.amazonaws.com/photos/ofinqs_shane1536.jpg')
        
          P.render()
        
        
        See `PDF <https://www.dropbox.com/s/7snhzm0ekxorgq6/example.pdf?dl=0>`_
        
        
        Known issues
        ================
        
        
        
        
        Author
        ======
        
        Giuseppe Romano (romanog@mit.edu)
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
