[
  {
    "path": ".conda_environment.yml",
    "content": "name: py36\ndependencies:\n    - python=3.6.2\n    - matplotlib\n"
  },
  {
    "path": ".editorconfig",
    "content": "# http://editorconfig.org\n\nroot = true\n\n[*]\nindent_style = space\nindent_size = 4\ntrim_trailing_whitespace = true\ninsert_final_newline = true\ncharset = utf-8\nend_of_line = lf\n\n[*.bat]\nindent_style = tab\nend_of_line = crlf\n\n[LICENSE]\ninsert_final_newline = false\n\n[Makefile]\nindent_style = tab\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "content": "* LaTeXiPy version:\n* Python version:\n* Operating System:\n\n### Description\n\nDescribe what you were trying to get done.\nTell us what happened, what went wrong, and what you expected to happen.\n\n### What I Did\n\n```\nPaste the command(s) you ran and the output.\nIf there was a crash, please include the traceback here.\n```\n"
  },
  {
    "path": ".gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nenv/\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\n*.egg-info/\n.installed.cfg\n*.egg\n.pypirc\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*,cover\n.hypothesis/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\ntarget/\n\n# pyenv python configuration file\n.python-version\n\n# vim\n*.swp\n\n# LaTeX\n_minted-*\n*.aux\n*.out\n*.pdf\n*.lof\n*.lol\n*.toc\n"
  },
  {
    "path": ".readthedocs.yml",
    "content": "formats:\n    - htmlzip\nconda:\n    file: .conda_environment.yml\n"
  },
  {
    "path": ".travis.yml",
    "content": "# Config file for automatic testing at travis-ci.org\n# This file will be regenerated if you run travis_pypi_setup.py\n\nlanguage: python\npython:\n  - 3.9\n\n# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors\ninstall: pip install -U tox-travis\n\n# command to run tests, e.g. python setup.py test\nscript: tox\n\n# After you create the Github repo and add it to Travis, run the\n# travis_pypi_setup.py script to finish PyPI deployment setup\ndeploy:\n  provider: pypi\n  distributions: sdist bdist_wheel\n  user: masasin\n  password:\n    secure: PLEASE_REPLACE_ME\n  on:\n    tags: true\n    repo: masasin/latexipy\n    python: 3.9\n"
  },
  {
    "path": "AUTHORS.rst",
    "content": "=======\nCredits\n=======\n\nDevelopment Lead\n----------------\n\n* Jean Nassar <jn.masasin@gmail.com>\n\nContributors\n------------\n\nNone yet. Why not be the first?\n"
  },
  {
    "path": "CONTRIBUTING.rst",
    "content": ".. highlight:: shell\n\n============\nContributing\n============\n\nContributions are welcome, and they are greatly appreciated! Every\nlittle bit helps, and credit will always be given.\n\nYou can contribute in many ways:\n\nTypes of Contributions\n----------------------\n\nReport Bugs\n~~~~~~~~~~~\n\nReport bugs at https://github.com/masasin/latexipy/issues.\n\nIf you are reporting a bug, please include:\n\n* Your operating system name and version.\n* Any details about your local setup that might be helpful in troubleshooting.\n* Detailed steps to reproduce the bug.\n\nFix Bugs\n~~~~~~~~\n\nLook through the GitHub issues for bugs. Anything tagged with \"bug\"\nand \"help wanted\" is open to whoever wants to implement it.\n\nImplement Features\n~~~~~~~~~~~~~~~~~~\n\nLook through the GitHub issues for features. Anything tagged with \"enhancement\"\nand \"help wanted\" is open to whoever wants to implement it.\n\nWrite Documentation\n~~~~~~~~~~~~~~~~~~~\n\nLaTeXiPy could always use more documentation, whether as part of the\nofficial LaTeXiPy docs, in docstrings, or even on the web in blog posts,\narticles, and such.\n\nSubmit Feedback\n~~~~~~~~~~~~~~~\n\nThe best way to send feedback is to file an issue at https://github.com/masasin/latexipy/issues.\n\nIf you are proposing a feature:\n\n* Explain in detail how it would work.\n* Keep the scope as narrow as possible, to make it easier to implement.\n* Remember that this is a volunteer-driven project, and that contributions\n  are welcome :)\n\nGet Started!\n------------\n\nReady to contribute? Here's how to set up `latexipy` for local development.\n\n1. Fork the `latexipy` repo on GitHub.\n2. Clone your fork locally::\n\n    $ git clone git@github.com:your_name_here/latexipy.git\n\n3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development::\n\n    $ mkvirtualenv latexipy\n    $ cd latexipy/\n    $ python setup.py develop\n\n4. Create a branch for local development::\n\n    $ git checkout -b name-of-your-bugfix-or-feature\n\n   Now you can make your changes locally.\n\n5. When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox::\n\n    $ flake8 latexipy tests\n    $ python setup.py test or py.test\n    $ tox\n\n   To get flake8 and tox, just pip install them into your virtualenv.\n\n6. Commit your changes and push your branch to GitHub::\n\n    $ git add .\n    $ git commit -m \"Your detailed description of your changes.\"\n    $ git push origin name-of-your-bugfix-or-feature\n\n7. Submit a pull request through the GitHub website.\n\nPull Request Guidelines\n-----------------------\n\nBefore you submit a pull request, check that it meets these guidelines:\n\n1. The pull request should include tests.\n2. If the pull request adds functionality, the docs should be updated. Put\n   your new functionality into a function with a docstring, and add the\n   feature to the list in README.rst.\n3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check\n   https://travis-ci.org/masasin/latexipy/pull_requests\n   and make sure that the tests pass for all supported Python versions.\n\nTips\n----\n\nTo run a subset of tests::\n\n$ py.test tests.test_latexipy\n\n"
  },
  {
    "path": "HISTORY.rst",
    "content": "=======\nHistory\n=======\n\n1.0.1 (2017-08-24)\n------------------\n\n* Fix README rendering for Github and PyPI.\n\n1.0.0 (2017-08-24)\n------------------\n\n* First release on PyPI.\n"
  },
  {
    "path": "LICENSE",
    "content": "\nMIT License\n\nCopyright (c) 2017, Jean Nassar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n"
  },
  {
    "path": "MANIFEST.in",
    "content": "include AUTHORS.rst\ninclude CONTRIBUTING.rst\ninclude HISTORY.rst\ninclude LICENSE\ninclude README.rst\n\nrecursive-include tests *\nrecursive-include examples *\nrecursive-exclude * __pycache__\nrecursive-exclude * *.py[co]\n\nrecursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif\n"
  },
  {
    "path": "Makefile",
    "content": ".PHONY: clean clean-test clean-pyc clean-build docs help\n.DEFAULT_GOAL := help\ndefine BROWSER_PYSCRIPT\nimport os, webbrowser, sys\ntry:\n\tfrom urllib import pathname2url\nexcept:\n\tfrom urllib.request import pathname2url\n\nwebbrowser.open(\"file://\" + pathname2url(os.path.abspath(sys.argv[1])))\nendef\nexport BROWSER_PYSCRIPT\n\ndefine PRINT_HELP_PYSCRIPT\nimport re, sys\n\nfor line in sys.stdin:\n\tmatch = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line)\n\tif match:\n\t\ttarget, help = match.groups()\n\t\tprint(\"%-20s %s\" % (target, help))\nendef\nexport PRINT_HELP_PYSCRIPT\nBROWSER := python -c \"$$BROWSER_PYSCRIPT\"\n\nhelp:\n\t@python -c \"$$PRINT_HELP_PYSCRIPT\" < $(MAKEFILE_LIST)\n\nclean: clean-build clean-pyc clean-test ## remove all build, test, coverage and Python artifacts\n\n\nclean-build: ## remove build artifacts\n\trm -fr build/\n\trm -fr dist/\n\trm -fr .eggs/\n\tfind . -name '*.egg-info' -exec rm -fr {} +\n\tfind . -name '*.egg' -exec rm -f {} +\n\nclean-pyc: ## remove Python file artifacts\n\tfind . -name '*.pyc' -exec rm -f {} +\n\tfind . -name '*.pyo' -exec rm -f {} +\n\tfind . -name '*~' -exec rm -f {} +\n\tfind . -name '__pycache__' -exec rm -fr {} +\n\nclean-test: ## remove test and coverage artifacts\n\trm -fr .tox/\n\trm -f .coverage\n\trm -fr htmlcov/\n\nlint: ## check style with flake8\n\tflake8 latexipy tests\n\ntest: ## run tests quickly with the default Python\n\tpy.test\n\t\n\ntest-all: ## run tests on every Python version with tox\n\ttox\n\ncoverage: ## check code coverage quickly with the default Python\n\tcoverage run --source latexipy -m pytest\n\tcoverage report -m\n\tcoverage html\n\t$(BROWSER) htmlcov/index.html\n\ndocs: ## generate Sphinx HTML documentation, including API docs\n\tsphinx-apidoc -o docs/ latexipy\n\t$(MAKE) -C docs clean\n\t$(MAKE) -C docs html\n\t$(BROWSER) docs/_build/html/index.html\n\nservedocs: docs ## compile the docs watching for changes\n\twatchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .\n\nrelease: clean ## package and upload a release\n\tpython setup.py sdist upload\n\tpython setup.py bdist_wheel upload\n\ndist: clean ## builds source and wheel package\n\tpython setup.py sdist\n\tpython setup.py bdist_wheel\n\tls -l dist\n\ninstall: clean ## install the package to the active Python's site-packages\n\tpython setup.py install\n"
  },
  {
    "path": "README.rst",
    "content": "========\nLaTeXiPy\n========\n\n\n.. image:: https://img.shields.io/pypi/v/latexipy.svg\n        :target: https://pypi.python.org/pypi/latexipy\n        :alt: PyPI version\n\n.. image:: https://img.shields.io/travis/masasin/latexipy.svg\n        :target: https://travis-ci.org/masasin/latexipy\n        :alt: Test status\n\n.. image:: https://readthedocs.org/projects/latexipy/badge/?version=latest\n        :target: https://latexipy.readthedocs.io/en/latest/?badge=latest\n        :alt: Documentation Status\n\n.. image:: https://pyup.io/repos/github/masasin/latexipy/shield.svg\n        :target: https://pyup.io/repos/github/masasin/latexipy/\n        :alt: Updates\n\n.. image:: https://img.shields.io/badge/license-MIT-blue.svg\n        :target: https://github.com/masasin/latexipy\n        :alt: MIT License\n\n\nGenerate beautiful plots for LaTeX using your existing Matplotlib-based code.\n\nYou can also use this package to generate plots without using LaTeX. Just don't run ``lp.latexify()``.\n\n* Free software: MIT license\n* Documentation: https://latexipy.readthedocs.io.\n\n\nUsage\n-----\n\nTo plot in Python:\n\n.. code-block:: python\n\n    import latexipy as lp\n\n    lp.latexify()  # Change to a serif font that fits with most LaTeX.\n\n    with lp.figure('filename'):  # saves in img/ by default.\n        draw_the_plot()\n\n.. image:: https://github.com/masasin/latexipy/raw/master/examples/img/sincos_defaults.png\n\nTo display in LaTeX:\n\n.. code-block:: latex\n\n    \\usepackage{pgf}\n    \\input{filename.pgf}\n\n\nSee the examples_ directory for some example code, their resulting images, as well as an example LaTeX file and its output PDF_.\n\n.. _examples: https://github.com/masasin/latexipy/tree/master/examples\n.. _PDF: https://github.com/masasin/latexipy/raw/master/examples/example.pdf\n\n\nFeatures\n--------\n\n* Automatically generate multiple plot types, such as PDF, PNG, and PGF for LaTeX.\n* Works with all Matplotlib-based packages, including Seaborn and Pandas.\n* Allows for easily changing the style temporarily.\n\n\nCredits\n---------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n\n"
  },
  {
    "path": "docs/Makefile",
    "content": "# Makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line.\nSPHINXOPTS    =\nSPHINXBUILD   = sphinx-build\nPAPER         =\nBUILDDIR      = _build\n\n# User-friendly check for sphinx-build\nifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)\n$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)\nendif\n\n# Internal variables.\nPAPEROPT_a4     = -D latex_paper_size=a4\nPAPEROPT_letter = -D latex_paper_size=letter\nALLSPHINXOPTS   = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n# the i18n builder cannot share the environment and doctrees with the others\nI18NSPHINXOPTS  = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n\n.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext\n\nhelp:\n\t@echo \"Please use \\`make <target>' where <target> is one of\"\n\t@echo \"  html       to make standalone HTML files\"\n\t@echo \"  dirhtml    to make HTML files named index.html in directories\"\n\t@echo \"  singlehtml to make a single large HTML file\"\n\t@echo \"  pickle     to make pickle files\"\n\t@echo \"  json       to make JSON files\"\n\t@echo \"  htmlhelp   to make HTML files and a HTML help project\"\n\t@echo \"  qthelp     to make HTML files and a qthelp project\"\n\t@echo \"  devhelp    to make HTML files and a Devhelp project\"\n\t@echo \"  epub       to make an epub\"\n\t@echo \"  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter\"\n\t@echo \"  latexpdf   to make LaTeX files and run them through pdflatex\"\n\t@echo \"  latexpdfja to make LaTeX files and run them through platex/dvipdfmx\"\n\t@echo \"  text       to make text files\"\n\t@echo \"  man        to make manual pages\"\n\t@echo \"  texinfo    to make Texinfo files\"\n\t@echo \"  info       to make Texinfo files and run them through makeinfo\"\n\t@echo \"  gettext    to make PO message catalogs\"\n\t@echo \"  changes    to make an overview of all changed/added/deprecated items\"\n\t@echo \"  xml        to make Docutils-native XML files\"\n\t@echo \"  pseudoxml  to make pseudoxml-XML files for display purposes\"\n\t@echo \"  linkcheck  to check all external links for integrity\"\n\t@echo \"  doctest    to run all doctests embedded in the documentation (if enabled)\"\n\nclean:\n\trm -rf $(BUILDDIR)/*\n\nhtml:\n\t$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html\n\t@echo\n\t@echo \"Build finished. The HTML pages are in $(BUILDDIR)/html.\"\n\ndirhtml:\n\t$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml\n\t@echo\n\t@echo \"Build finished. The HTML pages are in $(BUILDDIR)/dirhtml.\"\n\nsinglehtml:\n\t$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml\n\t@echo\n\t@echo \"Build finished. The HTML page is in $(BUILDDIR)/singlehtml.\"\n\npickle:\n\t$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle\n\t@echo\n\t@echo \"Build finished; now you can process the pickle files.\"\n\njson:\n\t$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json\n\t@echo\n\t@echo \"Build finished; now you can process the JSON files.\"\n\nhtmlhelp:\n\t$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp\n\t@echo\n\t@echo \"Build finished; now you can run HTML Help Workshop with the\" \\\n\t      \".hhp project file in $(BUILDDIR)/htmlhelp.\"\n\nqthelp:\n\t$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp\n\t@echo\n\t@echo \"Build finished; now you can run \"qcollectiongenerator\" with the\" \\\n\t      \".qhcp project file in $(BUILDDIR)/qthelp, like this:\"\n\t@echo \"# qcollectiongenerator $(BUILDDIR)/qthelp/latexipy.qhcp\"\n\t@echo \"To view the help file:\"\n\t@echo \"# assistant -collectionFile $(BUILDDIR)/qthelp/latexipy.qhc\"\n\ndevhelp:\n\t$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp\n\t@echo\n\t@echo \"Build finished.\"\n\t@echo \"To view the help file:\"\n\t@echo \"# mkdir -p $$HOME/.local/share/devhelp/latexipy\"\n\t@echo \"# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/latexipy\"\n\t@echo \"# devhelp\"\n\nepub:\n\t$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub\n\t@echo\n\t@echo \"Build finished. The epub file is in $(BUILDDIR)/epub.\"\n\nlatex:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo\n\t@echo \"Build finished; the LaTeX files are in $(BUILDDIR)/latex.\"\n\t@echo \"Run \\`make' in that directory to run these through (pdf)latex\" \\\n\t      \"(use \\`make latexpdf' here to do that automatically).\"\n\nlatexpdf:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo \"Running LaTeX files through pdflatex...\"\n\t$(MAKE) -C $(BUILDDIR)/latex all-pdf\n\t@echo \"pdflatex finished; the PDF files are in $(BUILDDIR)/latex.\"\n\nlatexpdfja:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo \"Running LaTeX files through platex and dvipdfmx...\"\n\t$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja\n\t@echo \"pdflatex finished; the PDF files are in $(BUILDDIR)/latex.\"\n\ntext:\n\t$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text\n\t@echo\n\t@echo \"Build finished. The text files are in $(BUILDDIR)/text.\"\n\nman:\n\t$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man\n\t@echo\n\t@echo \"Build finished. The manual pages are in $(BUILDDIR)/man.\"\n\ntexinfo:\n\t$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo\n\t@echo\n\t@echo \"Build finished. The Texinfo files are in $(BUILDDIR)/texinfo.\"\n\t@echo \"Run \\`make' in that directory to run these through makeinfo\" \\\n\t      \"(use \\`make info' here to do that automatically).\"\n\ninfo:\n\t$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo\n\t@echo \"Running Texinfo files through makeinfo...\"\n\tmake -C $(BUILDDIR)/texinfo info\n\t@echo \"makeinfo finished; the Info files are in $(BUILDDIR)/texinfo.\"\n\ngettext:\n\t$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale\n\t@echo\n\t@echo \"Build finished. The message catalogs are in $(BUILDDIR)/locale.\"\n\nchanges:\n\t$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes\n\t@echo\n\t@echo \"The overview file is in $(BUILDDIR)/changes.\"\n\nlinkcheck:\n\t$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck\n\t@echo\n\t@echo \"Link check complete; look for any errors in the above output \" \\\n\t      \"or in $(BUILDDIR)/linkcheck/output.txt.\"\n\ndoctest:\n\t$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest\n\t@echo \"Testing of doctests in the sources finished, look at the \" \\\n\t      \"results in $(BUILDDIR)/doctest/output.txt.\"\n\nxml:\n\t$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml\n\t@echo\n\t@echo \"Build finished. The XML files are in $(BUILDDIR)/xml.\"\n\npseudoxml:\n\t$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml\n\t@echo\n\t@echo \"Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml.\"\n"
  },
  {
    "path": "docs/authors.rst",
    "content": ".. include:: ../AUTHORS.rst\n"
  },
  {
    "path": "docs/conf.py",
    "content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n#\n# latexipy documentation build configuration file, created by\n# sphinx-quickstart on Tue Jul  9 22:26:36 2013.\n#\n# This file is execfile()d with the current directory set to its\n# containing dir.\n#\n# Note that not all possible configuration values are present in this\n# autogenerated file.\n#\n# All configuration values have a default; values that are commented out\n# serve to show the default.\n\nimport sys\nimport os\n\n# If extensions (or modules to document with autodoc) are in another\n# directory, add these directories to sys.path here. If the directory is\n# relative to the documentation root, use os.path.abspath to make it\n# absolute, like shown here.\n#sys.path.insert(0, os.path.abspath('.'))\n\n# Get the project root dir, which is the parent dir of this\ncwd = os.getcwd()\nproject_root = os.path.dirname(cwd)\n\n# Insert the project root dir as the first element in the PYTHONPATH.\n# This lets us ensure that the source package is imported, and that its\n# version is used.\nsys.path.insert(0, project_root)\n\nimport latexipy\n\n# -- General configuration ---------------------------------------------\n\n# If your documentation needs a minimal Sphinx version, state it here.\n#needs_sphinx = '1.0'\n\n# Add any Sphinx extension module names here, as strings. They can be\n# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.\nextensions = ['sphinx.ext.autodoc', 'sphinx.ext.napoleon', 'sphinx.ext.viewcode']\n\nnapoleon_use_admonition_for_examples = True\nnapoleon_use_admonition_for_notes = True\nnapoleon_use_admonition_for_references = True\nnapoleon_include_special_with_doc = True\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = ['_templates']\n\n# The suffix of source filenames.\nsource_suffix = '.rst'\n\n# The encoding of source files.\n#source_encoding = 'utf-8-sig'\n\n# The master toctree document.\nmaster_doc = 'index'\n\n# General information about the project.\nproject = u'LaTeXiPy'\ncopyright = u\"2017, Jean Nassar\"\nauthor = u'Jean Nassar'\n\n# The version info for the project you're documenting, acts as replacement\n# for |version| and |release|, also used in various other places throughout\n# the built documents.\n#\n# The short X.Y version.\nversion = latexipy.__version__\n# The full version, including alpha/beta/rc tags.\nrelease = latexipy.__version__\n\n# The language for content autogenerated by Sphinx. Refer to documentation\n# for a list of supported languages.\n#language = None\n\n# There are two options for replacing |today|: either, you set today to\n# some non-false value, then it is used:\n#today = ''\n# Else, today_fmt is used as the format for a strftime call.\n#today_fmt = '%B %d, %Y'\n\n# List of patterns, relative to source directory, that match files and\n# directories to ignore when looking for source files.\nexclude_patterns = ['_build']\n\n# The reST default role (used for this markup: `text`) to use for all\n# documents.\n#default_role = None\n\n# If true, '()' will be appended to :func: etc. cross-reference text.\n#add_function_parentheses = True\n\n# If true, the current module name will be prepended to all description\n# unit titles (such as .. function::).\n#add_module_names = True\n\n# If true, sectionauthor and moduleauthor directives will be shown in the\n# output. They are ignored by default.\n#show_authors = False\n\n# The name of the Pygments (syntax highlighting) style to use.\npygments_style = 'sphinx'\n\n# A list of ignored prefixes for module index sorting.\n#modindex_common_prefix = []\n\n# If true, keep warnings as \"system message\" paragraphs in the built\n# documents.\n#keep_warnings = False\n\n\n# -- Options for HTML output -------------------------------------------\n\n# The theme to use for HTML and HTML Help pages.  See the documentation for\n# a list of builtin themes.\nhtml_theme = 'sphinx_rtd_theme'\n\n# Theme options are theme-specific and customize the look and feel of a\n# theme further.  For a list of options available for each theme, see the\n# documentation.\n#html_theme_options = {}\n\n# Add any paths that contain custom themes here, relative to this directory.\n#html_theme_path = []\n\n# The name for this set of Sphinx documents.  If None, it defaults to\n# \"<project> v<release> documentation\".\n#html_title = None\n\n# A shorter title for the navigation bar.  Default is the same as\n# html_title.\n#html_short_title = None\n\n# The name of an image file (relative to this directory) to place at the\n# top of the sidebar.\n#html_logo = None\n\n# The name of an image file (within the static path) to use as favicon\n# of the docs.  This file should be a Windows icon file (.ico) being\n# 16x16 or 32x32 pixels large.\n#html_favicon = None\n\n# Add any paths that contain custom static files (such as style sheets)\n# here, relative to this directory. They are copied after the builtin\n# static files, so a file named \"default.css\" will overwrite the builtin\n# \"default.css\".\nhtml_static_path = []\n\n# If not '', a 'Last updated on:' timestamp is inserted at every page\n# bottom, using the given strftime format.\n#html_last_updated_fmt = '%b %d, %Y'\n\n# If true, SmartyPants will be used to convert quotes and dashes to\n# typographically correct entities.\n#html_use_smartypants = True\n\n# Custom sidebar templates, maps document names to template names.\n#html_sidebars = {}\n\n# Additional templates that should be rendered to pages, maps page names\n# to template names.\n#html_additional_pages = {}\n\n# If false, no module index is generated.\n#html_domain_indices = True\n\n# If false, no index is generated.\n#html_use_index = True\n\n# If true, the index is split into individual pages for each letter.\n#html_split_index = False\n\n# If true, links to the reST sources are added to the pages.\n#html_show_sourcelink = True\n\n# If true, \"Created using Sphinx\" is shown in the HTML footer.\n# Default is True.\n#html_show_sphinx = True\n\n# If true, \"(C) Copyright ...\" is shown in the HTML footer.\n# Default is True.\n#html_show_copyright = True\n\n# If true, an OpenSearch description file will be output, and all pages\n# will contain a <link> tag referring to it.  The value of this option\n# must be the base URL from which the finished HTML is served.\n#html_use_opensearch = ''\n\n# This is the file name suffix for HTML files (e.g. \".xhtml\").\n#html_file_suffix = None\n\n# Output file base name for HTML help builder.\nhtmlhelp_basename = 'latexipydoc'\n\n\n# -- Options for LaTeX output ------------------------------------------\n\nlatex_elements = {\n    # The paper size ('letterpaper' or 'a4paper').\n    #'papersize': 'letterpaper',\n\n    # The font size ('10pt', '11pt' or '12pt').\n    #'pointsize': '10pt',\n\n    # Additional stuff for the LaTeX preamble.\n    #'preamble': '',\n}\n\n# Grouping the document tree into LaTeX files. List of tuples\n# (source start file, target name, title, author, documentclass\n# [howto/manual]).\nlatex_documents = [\n    ('index', 'latexipy.tex',\n     u'LaTeXiPy Documentation',\n     u'Jean Nassar', 'manual'),\n]\n\n# The name of an image file (relative to this directory) to place at\n# the top of the title page.\n#latex_logo = None\n\n# For \"manual\" documents, if this is true, then toplevel headings\n# are parts, not chapters.\n#latex_use_parts = False\n\n# If true, show page references after internal links.\n#latex_show_pagerefs = False\n\n# If true, show URL addresses after external links.\n#latex_show_urls = False\n\n# Documents to append as an appendix to all manuals.\n#latex_appendices = []\n\n# If false, no module index is generated.\n#latex_domain_indices = True\n\n\n# -- Options for manual page output ------------------------------------\n\n# One entry per manual page. List of tuples\n# (source start file, name, description, authors, manual section).\nman_pages = [\n    ('index', 'latexipy',\n     u'LaTeXiPy Documentation',\n     [u'Jean Nassar'], 1)\n]\n\n# If true, show URL addresses after external links.\n#man_show_urls = False\n\n\n# -- Options for Texinfo output ----------------------------------------\n\n# Grouping the document tree into Texinfo files. List of tuples\n# (source start file, target name, title, author,\n#  dir menu entry, description, category)\ntexinfo_documents = [\n    ('index', 'latexipy',\n     u'LaTeXiPy Documentation',\n     u'Jean Nassar',\n     'latexipy',\n     'Generate beatiful plots for LaTeX using your existing matplotlib-based code.',\n     'Miscellaneous'),\n]\n\n# Documents to append as an appendix to all manuals.\n#texinfo_appendices = []\n\n# If false, no module index is generated.\n#texinfo_domain_indices = True\n\n# How to display URL addresses: 'footnote', 'no', or 'inline'.\n#texinfo_show_urls = 'footnote'\n\n# If true, do not generate a @detailmenu in the \"Top\" node's menu.\n#texinfo_no_detailmenu = False\n\n# Suppress warnings.\nsuppress_warnings = ['image.nonlocal_uri']\n"
  },
  {
    "path": "docs/contributing.rst",
    "content": ".. include:: ../CONTRIBUTING.rst\n"
  },
  {
    "path": "docs/history.rst",
    "content": ".. include:: ../HISTORY.rst\n"
  },
  {
    "path": "docs/index.rst",
    "content": "Welcome to LaTeXiPy's documentation!\n======================================\n\nContents:\n\n.. toctree::\n   :maxdepth: 2\n\n   readme\n   installation\n   usage\n   modules\n   contributing\n   authors\n   history\n\nIndices and tables\n==================\n\n* :ref:`genindex`\n* :ref:`modindex`\n* :ref:`search`\n"
  },
  {
    "path": "docs/installation.rst",
    "content": ".. highlight:: shell\n\n============\nInstallation\n============\n\n\nStable release\n--------------\n\nTo install LaTeXiPy, run this command in your terminal:\n\n.. code-block:: console\n\n    $ pip install latexipy\n\nThis is the preferred method to install LaTeXiPy, as it will always install the most recent stable release. \n\nIf you don't have `pip`_ installed, this `Python installation guide`_ can guide\nyou through the process.\n\n.. _pip: https://pip.pypa.io\n.. _Python installation guide: http://docs.python-guide.org/en/latest/starting/installation/\n\n\nFrom sources\n------------\n\nThe sources for LaTeXiPy can be downloaded from the `Github repo`_.\n\nYou can either clone the public repository:\n\n.. code-block:: console\n\n    $ git clone git://github.com/masasin/latexipy\n\nOr download the `tarball`_:\n\n.. code-block:: console\n\n    $ curl  -OL https://github.com/masasin/latexipy/tarball/master\n\nOnce you have a copy of the source, you can install it with:\n\n.. code-block:: console\n\n    $ python setup.py install\n\n\n.. _Github repo: https://github.com/masasin/latexipy\n.. _tarball: https://github.com/masasin/latexipy/tarball/master\n"
  },
  {
    "path": "docs/latexipy.rst",
    "content": "latexipy package\n================\n\nModule contents\n---------------\n\n.. automodule:: latexipy\n    :members:\n    :undoc-members:\n    :show-inheritance:\n"
  },
  {
    "path": "docs/make.bat",
    "content": "@ECHO OFF\n\nREM Command file for Sphinx documentation\n\nif \"%SPHINXBUILD%\" == \"\" (\n\tset SPHINXBUILD=sphinx-build\n)\nset BUILDDIR=_build\nset ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .\nset I18NSPHINXOPTS=%SPHINXOPTS% .\nif NOT \"%PAPER%\" == \"\" (\n\tset ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%\n\tset I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%\n)\n\nif \"%1\" == \"\" goto help\n\nif \"%1\" == \"help\" (\n\t:help\n\techo.Please use `make ^<target^>` where ^<target^> is one of\n\techo.  html       to make standalone HTML files\n\techo.  dirhtml    to make HTML files named index.html in directories\n\techo.  singlehtml to make a single large HTML file\n\techo.  pickle     to make pickle files\n\techo.  json       to make JSON files\n\techo.  htmlhelp   to make HTML files and a HTML help project\n\techo.  qthelp     to make HTML files and a qthelp project\n\techo.  devhelp    to make HTML files and a Devhelp project\n\techo.  epub       to make an epub\n\techo.  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter\n\techo.  text       to make text files\n\techo.  man        to make manual pages\n\techo.  texinfo    to make Texinfo files\n\techo.  gettext    to make PO message catalogs\n\techo.  changes    to make an overview over all changed/added/deprecated items\n\techo.  xml        to make Docutils-native XML files\n\techo.  pseudoxml  to make pseudoxml-XML files for display purposes\n\techo.  linkcheck  to check all external links for integrity\n\techo.  doctest    to run all doctests embedded in the documentation if enabled\n\tgoto end\n)\n\nif \"%1\" == \"clean\" (\n\tfor /d %%i in (%BUILDDIR%\\*) do rmdir /q /s %%i\n\tdel /q /s %BUILDDIR%\\*\n\tgoto end\n)\n\n\n%SPHINXBUILD% 2> nul\nif errorlevel 9009 (\n\techo.\n\techo.The 'sphinx-build' command was not found. Make sure you have Sphinx\n\techo.installed, then set the SPHINXBUILD environment variable to point\n\techo.to the full path of the 'sphinx-build' executable. Alternatively you\n\techo.may add the Sphinx directory to PATH.\n\techo.\n\techo.If you don't have Sphinx installed, grab it from\n\techo.http://sphinx-doc.org/\n\texit /b 1\n)\n\nif \"%1\" == \"html\" (\n\t%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The HTML pages are in %BUILDDIR%/html.\n\tgoto end\n)\n\nif \"%1\" == \"dirhtml\" (\n\t%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.\n\tgoto end\n)\n\nif \"%1\" == \"singlehtml\" (\n\t%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.\n\tgoto end\n)\n\nif \"%1\" == \"pickle\" (\n\t%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; now you can process the pickle files.\n\tgoto end\n)\n\nif \"%1\" == \"json\" (\n\t%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; now you can process the JSON files.\n\tgoto end\n)\n\nif \"%1\" == \"htmlhelp\" (\n\t%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; now you can run HTML Help Workshop with the ^\n.hhp project file in %BUILDDIR%/htmlhelp.\n\tgoto end\n)\n\nif \"%1\" == \"qthelp\" (\n\t%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; now you can run \"qcollectiongenerator\" with the ^\n.qhcp project file in %BUILDDIR%/qthelp, like this:\n\techo.^> qcollectiongenerator %BUILDDIR%\\qthelp\\latexipy.qhcp\n\techo.To view the help file:\n\techo.^> assistant -collectionFile %BUILDDIR%\\qthelp\\latexipy.ghc\n\tgoto end\n)\n\nif \"%1\" == \"devhelp\" (\n\t%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished.\n\tgoto end\n)\n\nif \"%1\" == \"epub\" (\n\t%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The epub file is in %BUILDDIR%/epub.\n\tgoto end\n)\n\nif \"%1\" == \"latex\" (\n\t%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished; the LaTeX files are in %BUILDDIR%/latex.\n\tgoto end\n)\n\nif \"%1\" == \"latexpdf\" (\n\t%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex\n\tcd %BUILDDIR%/latex\n\tmake all-pdf\n\tcd %BUILDDIR%/..\n\techo.\n\techo.Build finished; the PDF files are in %BUILDDIR%/latex.\n\tgoto end\n)\n\nif \"%1\" == \"latexpdfja\" (\n\t%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex\n\tcd %BUILDDIR%/latex\n\tmake all-pdf-ja\n\tcd %BUILDDIR%/..\n\techo.\n\techo.Build finished; the PDF files are in %BUILDDIR%/latex.\n\tgoto end\n)\n\nif \"%1\" == \"text\" (\n\t%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The text files are in %BUILDDIR%/text.\n\tgoto end\n)\n\nif \"%1\" == \"man\" (\n\t%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The manual pages are in %BUILDDIR%/man.\n\tgoto end\n)\n\nif \"%1\" == \"texinfo\" (\n\t%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.\n\tgoto end\n)\n\nif \"%1\" == \"gettext\" (\n\t%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The message catalogs are in %BUILDDIR%/locale.\n\tgoto end\n)\n\nif \"%1\" == \"changes\" (\n\t%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.The overview file is in %BUILDDIR%/changes.\n\tgoto end\n)\n\nif \"%1\" == \"linkcheck\" (\n\t%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Link check complete; look for any errors in the above output ^\nor in %BUILDDIR%/linkcheck/output.txt.\n\tgoto end\n)\n\nif \"%1\" == \"doctest\" (\n\t%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Testing of doctests in the sources finished, look at the ^\nresults in %BUILDDIR%/doctest/output.txt.\n\tgoto end\n)\n\nif \"%1\" == \"xml\" (\n\t%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The XML files are in %BUILDDIR%/xml.\n\tgoto end\n)\n\nif \"%1\" == \"pseudoxml\" (\n\t%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml\n\tif errorlevel 1 exit /b 1\n\techo.\n\techo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.\n\tgoto end\n)\n\n:end\n"
  },
  {
    "path": "docs/modules.rst",
    "content": "Technical Documentation\n=======================\n\n.. toctree::\n   :maxdepth: 4\n\n   latexipy\n"
  },
  {
    "path": "docs/readme.rst",
    "content": ".. include:: ../README.rst\n"
  },
  {
    "path": "docs/usage.rst",
    "content": "=====\nUsage\n=====\n\nTo use LaTeXiPy in a project::\n\n    import latexipy as lp\n\nSet up for LaTeX with::\n\n    lp.latexify()\n\nAnd make your figures with::\n\n    with lp.figure('filename'):\n        draw_the_plot()\n\nImport from LaTeX with:\n\n.. code-block:: latex\n\n    \\usepackage{pgf}\n    \\input{filename.pgf}\n\nExample files\n=============\nFrom the ``latexipy`` Github repository.\n\n* Python_\n* Latex_\n* PDF_\n\n.. _Python: https://github.com/masasin/latexipy/blob/master/examples/examples.py\n.. _Latex: https://github.com/masasin/latexipy/blob/master/examples/example.tex\n.. _PDF: https://github.com/masasin/latexipy/raw/master/examples/example.pdf\n\n\nMinimum Working Example\n=======================\n.. code-block:: python\n    :caption: sincos_plotter.py\n    :emphasize-lines: 4, 6, 8\n\n    import numpy as np\n    import matplotlib.pyplot as plt\n    \n    import latexipy as lp\n\n    lp.latexify()\n\n    with lp.figure('sincos'):\n        x = np.linspace(-np.pi, np.pi)\n        y_sin = np.sin(x)\n        y_cos = np.cos(x)\n        plt.plot(x, y_sin, label='sine')\n        plt.plot(x, y_cos, label='cosine')\n        plt.title('Sine and cosine')\n        plt.xlabel(r'$\\theta$')\n        plt.ylabel('Value')\n        plt.legend()\n\n\n.. code-block:: latex\n    :caption: sincos_report.tex\n    :emphasize-lines: 3, 8\n\n    \\documentclass{article}\n\n    \\usepackage{pgf}\n\n    \\begin{document}\n      \\begin{figure}[h]\n        \\centering\n        \\input{img/filename.pgf}\n        \\caption[LOF caption]{Regular caption.}\n        \\label{fig:pgf_example}\n      \\end{figure}\n    \\end{document}\n\nPlotting\n========\nWithout LaTeX\n-------------\nIf you are not making your plots for LaTeX, Matplotlib's defaults are used.\nThe typeface is sans-serif, and the font, a bit large.\nThe default arguments save a PGF and PNG file in the ``img/`` directory.\n\n.. code-block:: python\n    :emphasize-lines: 1\n\n    with lp.figure('sincos'):\n        plot_sin_and_cos()\n\n.. image:: ../examples/img/sincos_no_latex.png\n\nWith LaTeX\n----------\nIf you are building for LaTeX, just ``lp.latexify()``!\n\n.. code-block:: python\n    :emphasize-lines: 1, 3\n\n    lp.latexify()\n\n    with lp.figure('sincos'):\n        plot_sin_and_cos()\n\n.. image:: ../examples/img/sincos_defaults.png\n\nUsing custom parameters\n-----------------------\nBy default, ``lp.latexify()`` uses ``lp.PARAMS``, which has the following values:\n\n.. literalinclude:: ../latexipy/_latexipy.py\n    :caption: _latexipy.py\n    :linenos:\n    :lineno-start: 22\n    :lines: 22-41\n    \nPassing a different dictionary to ``lp.latexify()`` causes these changes to be permanent in the rest of the code.\nFor example, to increase the font size throughout:\n\n.. literalinclude:: ../examples/examples.py\n    :caption: examples.py\n    :emphasize-lines: 2, 3, 6\n    :linenos:\n    :lineno-start: 93\n    :lines: 93-101\n\nYou can call ``lp.latexify()`` multiple times throughout your code, but if you want to change the setting only for a few figures, the recommended approach is to use ``lp.temp_params()``. This automatically reverts to the previous settings after saving (or attempting to save) the plot.\n\n.. literalinclude:: ../examples/examples.py\n    :caption: examples.py\n    :emphasize-lines: 2\n    :linenos:\n    :lineno-start: 87\n    :lines: 87-90\n\nEither way, the font size would have increased uniformly from 8 to 10 pt.\n\n.. image:: ../examples/img/sincos_big_font_temp.png\n\nNote that ``lp.temp_params()`` can also take a custom dictionary which can do more fine-grained tuning of fonts.\n\n.. literalinclude:: ../examples/examples.py\n    :caption: examples.py\n    :emphasize-lines: 1\n    :linenos:\n    :lineno-start: 111\n    :lines: 111-116\n\n.. image:: ../examples/img/sincos_big_label_title.png\n\nReverting\n---------\nTo revert all changes made with ``lp.latexify()`` and other commands, just run ``lp.revert()``.\n\n\nAvoiding repetition\n===================\nIf you keep passing the same arguments to ``lp.figure()`` (for example, an output directory, a set of filetypes, or a certain size), you can save it for reuse by using ``functools.partial()``.  \nAfter that, you can use it just like ``lp.figure()``.\nNote that you would not be able to redifine an argument that you had previously applied.\n\n.. code-block:: python\n    :emphasize-lines: 1, 3\n\n    figure = partial(lp.figure, directory=DIRECTORY)\n\n    with figure('sincos_partial'):\n        plot_sin_and_cos()\n\nwhere ``DIRECTORY`` is the default output directory.\nThis pattern was used extensively in the Python_ file from the examples_ directory.\n\nUsing in LaTeX\n==============\nTo include a PGF file in your LaTeX document, make sure that the ``pgf`` package is loaded in the preamble.\n\n.. code-block:: latex\n\n    \\usepackage{pgf}\n\nAfter that, you can include it in the correct location with:\n\n.. code-block:: latex\n\n    \\input{<filename>.pgf}\n\nA minimum working example of an image within a figure is shown below.\n\n.. code-block:: latex\n    :emphasize-lines: 3, 8\n\n    \\documentclass{article}\n\n    \\usepackage{pgf}\n\n    \\begin{document}\n      \\begin{figure}[h]\n        \\centering\n        \\input{img/filename.pgf}\n        \\caption[LOF caption]{Regular caption.}\n        \\label{fig:pgf_example}\n      \\end{figure}\n    \\end{document}\n\nNote that figures using additional raster images can only be included by ``\\input{}`` if they are in the same directory as the main LaTeX file.\nTo load figures from other directories, you can use the ``import`` package instead.\n\n.. code-block:: latex\n\n  \\usepackage{import}\n  \\import{<path to file>}{<filename>.pgf}\n\nA minimum working example of that scenario is shown below.\n\n.. code-block:: latex\n    :emphasize-lines: 3, 4, 9\n\n    \\documentclass{article}\n\n    \\usepackage{import}\n    \\usepackage{pgf}\n\n    \\begin{document}\n      \\begin{figure}[h]\n        \\centering\n        \\import{/path/to/file/}{filename.pgf}  % Note trailing slash.\n        \\caption[LOF caption]{Regular caption.}\n        \\label{fig:pgf_example}\n      \\end{figure}\n    \\end{document}\n\n.. _examples: https://github.com/masasin/latexipy/tree/master/examples\n"
  },
  {
    "path": "examples/__init__.py",
    "content": "'''\nExamples package for latexipy.\n\n'''\n\n"
  },
  {
    "path": "examples/example.tex",
    "content": "\\documentclass[10pt]{article}\n\n\\newcommand\\latexipy{\\LaTeX iPy}\n\\newcommand\\latexify{\\LaTeX ify}\n\n\\usepackage[colorlinks]{hyperref}\n\\usepackage[nameinlink]{cleveref}\n\\hypersetup{\n  linkcolor={red!50!black},\n  citecolor={blue!50!black},\n  urlcolor={blue!80!black},\n  pdftitle={\\latexipy\\ Example},\n  pdfsubject={\\latexipy\\ documentation},\n  pdfauthor={Jean Nassar},\n}\n\n\\usepackage{minted}\n\\setminted[latex]{\n  autogobble=true,\n}\n\\setminted[python]{\n  autogobble=true,\n  python3=true,\n}\n\\newminted[pycode]{python}{}\n\\newmintinline[pyline]{python}{}\n\\newmintedfile[pyfile]{python}{}\n\n\\usepackage{pgf}\n\n\\title{\\latexipy\\ Example}\n\\author{Jean Nassar}\n\\date{\\today}\n\n\\begin{document}\n\\maketitle\n\\tableofcontents\n\\listoflistings\n\\listoffigures\n\n\\section{Online resources}\nThe Github repository is at \\url{https://github.com/masasin/latexipy},\nand the full example file is at \\href{https://github.com/masasin/latexipy/blob/master/examples/examples.py}{\\texttt{examples/examples.py}}.\nFull documentation is available at \\url{https://latexipy.readthedocs.io/}.\n\n\\section{Assumptions}\nIn order to generate plots with \\latexipy, install the package and import it.\n\nThis document assumes that the following imports are made:\n\n\\begin{listing}[H]\n  \\begin{pycode*}{highlightlines=3}\n    from functools import partial\n    import matplotlib.pyplot as plt\n    import latexipy as lp\n  \\end{pycode*}\n  \\caption[List of imports]{The imports used in this example.}\n  \\label{lst:imports}\n\\end{listing}\n\nAlso, it assumes that there is a function, \\pyline{plot_sin_and_cos()} which uses a Matplotlib-based package to generate a plot without calling \\pyline{plt.savefig()} or \\pyline{plt.close()}.\n\\latexipy\\ is known to work well with various libraries, including Matplotlib, Numpy, Pandas and Seaborn, among others.\n\nFinally, \\pyline{figure()} in the listings (without \\pyline{lp.}) is the partially applied version of the \\pyline{lp.figure()} function to save it in the right directory.\nSee \\Cref{sec:partial} for more details.\n\n\\section{Plotting}\n\\subsection{Without \\latexify}\nIf you don't \\latexify, Matplotlib's defaults are used.\nThe typeface is sans-serif, and the font a bit larger.\nThe code in \\Cref{lst:sincos_no_latex} generates \\Cref{fig:sincos_no_latex}.\n\n\\begin{listing}[H]\n  \\begin{pycode*}{highlightlines={1}}\n    with figure('sincos'):\n        plot_sin_and_cos()\n  \\end{pycode*}\n  \\caption[Figure generation]{Generate figures with one extra line.}\n  \\label{lst:sincos_no_latex}\n\\end{listing}\n\n\\begin{figure}[H]\n  \\centering\n  \\input{img/sincos_no_latex.pgf}\n  \\caption[Default plot]{The plot, with default parameters before \\latexify ing.}\n  \\label{fig:sincos_no_latex}\n\\end{figure}\n\n\\pyline{figure} is a context manager with the following signature:\n\n\\begin{listing}[H]\n  \\begin{pycode}\n    @contextmanager\n    def figure(filename, *, directory='img', exts=['pgf', 'png'],\n               size=None, mkdir=True):\n  \\end{pycode}\n  \\caption[\\pyline{lp.figure()} signature]{The signature for \\pyline{lp.figure()}.}\n  \\label{lst:figure}\n\\end{listing}\n\nNote that the default for \\pyline{directory}, \\texttt{./img}, is relative to the calling location, and that \\pyline{size} is a tuple with the $x$- and $y$-dimensions in inches.\n\n\\subsection{With \\latexify}\n\\Cref{fig:sincos_defaults} shows a plot using the default \\latexipy\\ configuration, with the same typeface as the body, but a size of 8\\,pt. To generate it, we can use the code in \\Cref{lst:sincos_defaults}.\n\n\\begin{listing}[H]\n  \\begin{pycode*}{highlightlines={1}}\n    lp.latexify()\n\n    with figure('sincos'):\n        plot_sin_and_cos()\n  \\end{pycode*}\n  \\caption[Example of \\latexify]{\\pyline{lp.latexify()} generates plots that fit well with \\LaTeX.}\n  \\label{lst:sincos_defaults}\n\\end{listing}\n\n\\begin{figure}[H]\n  \\centering\n  \\input{img/sincos_defaults.pgf}\n  \\caption[Default \\LaTeX\\ plot]{The plot, with default parameters after \\latexify ing.}\n  \\label{fig:sincos_defaults}\n\\end{figure}\n\n\\subsection{Custom parameters}\n\\pyline{lp.latexify()} uses \\pyline{lp.PARAMS} by default.\nIts values are shown in \\Cref{lst:default_params}.\n\n\\begin{listing}[H]\n  \\pyfile[firstline=22, lastline=41]{../latexipy/_latexipy.py}\n  \\caption[Default \\latexify\\ settings]{The default parameters changed by \\latexify.}\n  \\label{lst:default_params}\n\\end{listing}\n\nTo change some parameters temporarily, such as the font size, you can use the \\pyline{lp.temp_params} context manager. To keep the settings applied, simply pass a different dictionary to \\pyline{lp.latexify()}.\nEither can be done at any time.\n\\Cref{lst:new_params_temp} shows an example of increasing the font size temporarily.\n\\Cref{lst:new_params_permanent} shows an example of increasing the font size permanently.\n\n\\begin{listing}[H]\n  \\pyfile[firstline=87, lastline=90, highlightlines={88}]{examples.py}\n  \\caption[Using custom \\latexify\\ settings]{Increasing the font size is as simple as setting it once.}\n  \\label{lst:new_params_temp}\n\\end{listing}\n\n\\begin{listing}[H]\n  \\pyfile[firstline=93, lastline=101, highlightlines={94, 95, 98}]{examples.py}\n  \\caption[Permanently changing \\latexify\\ settings]{Pass a dictionary to \\pyline{lp.latexify()} to permanently change a setting.}\n  \\label{lst:new_params_permanent}\n\\end{listing}\n\nEither way, rerunning \\Cref{lst:sincos_no_latex} after updating the parameters gives \\Cref{fig:sincos_big_font_temp}, with a 10\\,pt font.\n\n\\begin{figure}[H]\n  \\centering\n  \\input{img/sincos_big_font_temp.pgf}\n  \\caption[Custom \\LaTeX\\ plot]{The plot, with the font size increased.}\n  \\label{fig:sincos_big_font_temp}\n\\end{figure}\n\n\\subsection{Reverting the settings}\n\nTo revert the settings, just run \\pyline{lp.revert()}.\n\n\\section{Programming tips}\n\\label{sec:partial}\nIf you keep passing the same arguments to \\pyline{lp.figure()} (for example, an output directory, a set of filetypes, or a certain size), you can save it for reuse by using the \\pyline{partial} function from the \\pyline{functools} module, as shown in \\Cref{lst:partial}.\nAfter that, you can use it just like \\pyline{lp.figure()}.\nNote that you would not be able to redifine an argument that you had previously applied.\n\nHere, \\pyline{DIRECTORY} refers to any output directory, either as a string, or as a \\pyline{pathlib.Path()} object.\n\n\\begin{listing}[H]\n  \\begin{pycode*}{highlightlines={1, 3}}\n    figure = partial(lp.figure, directory=DIRECTORY)\n\n    with figure('sincos_partial'):\n        plot_sin_and_cos()\n  \\end{pycode*}\n  \\caption[Using partial function application]{The \\pyline{sincos_partial} plots will be stored in \\pyline{DIRECTORY}.}\n  \\label{lst:partial}\n\\end{listing}\n\n\\section{Using in \\LaTeX}\nTo include a PGF file in your \\LaTeX document, make sure that the \\mintinline{latex}{pgf} package is loaded in the preamble:\n\n\\mint{latex}|\\usepackage{pgf}|\n\nAfter that, you can include it in the correct location with:\n\n\\mint{latex}|\\input{<filename>.pgf}|\n\n\\Cref{lst:latex} shows a minimum working example of adding an image within a figure.\n\n\\begin{listing}[H]\n  \\begin{minted}[highlightlines={3, 8}]{latex}\n    \\documentclass{article}\n\n    \\usepackage{pgf}\n\n    \\begin{document}\n      \\begin{figure}[h]\n        \\centering\n        \\input{img/filename.pgf}\n        \\caption[LOF caption]{Regular caption.}\n        \\label{fig:pgf_example}\n      \\end{figure}\n    \\end{document}\n  \\end{minted}\n  \\caption[\\LaTeX\\ Minimum Working Example]{A minimum working example of using PGF with \\LaTeX.}\n  \\label{lst:latex}\n\\end{listing}\n\nNote that figures using additional raster images can only be included by \\mintinline{latex}{\\input} if they are in the same directory as the main \\LaTeX file.\nTo load figures from other directories, you can use the \\mintinline{latex}{import} package instead.\n\n\\begin{minted}{latex}\n  \\usepackage{import}\n  \\import{<path to file>}{<filename>.pgf}\n\\end{minted}\n\nAn example is given in \\Cref{lst:import}.\n\n\\begin{listing}[H]\n  \\begin{minted}[highlightlines={3, 4, 9}]{latex}\n    \\documentclass{article}\n\n    \\usepackage{import}\n    \\usepackage{pgf}\n\n    \\begin{document}\n      \\begin{figure}[h]\n        \\centering\n        \\import{/path/to/file/}{filename.pgf}  % Note trailing slash.\n        \\caption[LOF caption]{Regular caption.}\n        \\label{fig:pgf_example}\n      \\end{figure}\n    \\end{document}\n  \\end{minted}\n  \\caption[Importing PGF with raster]{Importing a raster-using PGF from a different directory requires the \\mintinline{latex}{\\import} package.}\n  \\label{lst:import}\n\\end{listing}\n\n\n\\end{document}\n"
  },
  {
    "path": "examples/examples.py",
    "content": "#!/usr/bin/env python\nfrom functools import partial\nimport logging\nfrom pathlib import Path\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nimport latexipy as lp\n\n\nlogging.basicConfig(level=logging.INFO)\n\nDIRECTORY = Path(__file__).parent/'img'\n\n_x = np.linspace(-np.pi, np.pi)\n\n\ndef plot_sin(x=_x):\n    plt.plot(x, np.sin(x))\n    plt.title('Sine')\n    plt.xlabel(r'$\\theta$')\n    plt.ylabel('Value')\n\n\ndef plot_cos(x=_x):\n    plt.plot(x, np.cos(x), color='C1')\n    plt.title('Cosine')\n    plt.xlabel(r'$\\theta$')\n    plt.ylabel('Value')\n\n\ndef plot_sin_and_cos(x=_x):\n    plt.plot(x, np.sin(x), label='sine')\n    plt.plot(x, np.cos(x), label='cosine')\n    plt.title('Sine and cosine')\n    plt.xlabel(r'$\\theta$')\n    plt.ylabel('Value')\n    plt.legend()\n\n\nPLOT_TYPES = {\n    'sin': plot_sin,\n    'cos': plot_cos,\n    'sincos': plot_sin_and_cos,\n}\n\n\ndef generate_figures(suffix, figure=lp.figure, plot_types=PLOT_TYPES):\n    for plot_name, plot_function in plot_types.items():\n        with figure(plot_name + suffix):\n            plot_function()\n\n\nif __name__ == '__main__':\n    # If you are repeating arguments, you might want to register a partial.\n    figure = partial(lp.figure, directory=DIRECTORY)\n\n    # You can generate figures without calling lp.latexify().\n    generate_figures('_no_latex', figure)\n\n    # latexify chooses values that go well with publications.\n    lp.latexify()\n    generate_figures('_with_latex', figure)\n\n    # You can use the partial function just as you would the original.\n    with figure('sincos_defaults'):\n        plot_sin_and_cos()\n\n    # You can change the size. 0.45\\textwidth is useful when using two columns.\n    with figure('sincos_small', size=lp.figure_size(0.45)):\n        plot_sin_and_cos()\n\n    # A ratio of 1 is great for squares.\n    with figure('sincos_square', size=lp.figure_size(ratio=1)):\n        plot_sin_and_cos()\n\n    # And we can have a high figure if, for instance, stacking subplots.\n    with figure('sincos_tall', size=lp.figure_size(0.6, ratio=2)):\n        plot_sin_and_cos()\n\n    # It is equivalent to the original function with the right arguments.\n    with lp.figure('sincos_defaults_no_partial', directory=DIRECTORY):\n        plot_sin_and_cos()\n\n    # You can temporarily change parameters. To increase font size:\n    font_size = 10\n    with lp.temp_params(font_size=font_size):\n        with figure('sincos_big_font_temp'):\n            plot_sin_and_cos()\n\n    # You can permanently change them too.\n    font_size = 10\n    params = lp.PARAMS.copy()\n    params.update({param: font_size\n                   for param in params\n                   if 'size' in param})\n    lp.latexify(params)\n\n    with figure('sincos_big_font_permanent'):\n        plot_sin_and_cos()\n\n    # Or revert at any time.\n    lp.revert()\n    with figure('sincos_after_revert'):\n        plot_sin_and_cos()\n\n    lp.latexify()\n\n    # Extra-big label and legend.\n    with lp.temp_params(font_size=10, params_dict={\n        'axes.labelsize': 12,\n        'axes.titlesize': 12,\n        }):\n        with lp.figure('sincos_big_label_title'):\n            plot_sin_and_cos()\n"
  },
  {
    "path": "examples/generate.sh",
    "content": "#!/usr/bin/env bash\nset -e\n\nscript_dir=$(dirname -- \"$(readlink -e -- \"$BASH_SOURCE\")\")\ncd $script_dir\npython examples.py\npdflatex -shell-escape example.tex\n"
  },
  {
    "path": "examples/img/cos_no_latex.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage{fontspec}\n%%   \\setmainfont{DejaVu Serif}\n%%   \\setsansfont{DejaVu Sans}\n%%   \\setmonofont{DejaVu Sans Mono}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.868550in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.868550in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −3}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.394102in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.394102in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −2}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.919655in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.919655in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −1}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.445208in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.970761in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.970761in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 1}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.496314in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.496314in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 2}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.021867in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.021867in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 3}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=0.155587in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{0.533196in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.194552in,y=0.480435in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −1.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{0.985753in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.194552in,y=0.932991in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −0.5}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{1.438309in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=1.385548in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{1.890866in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=1.838104in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0.5}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{2.343422in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=2.290661in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 1.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.138997in,y=1.437379in,,bottom,rotate=90.000000]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.629028in}{0.442778in}}{\\pgfqpoint{3.632361in}{1.989203in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.794135in}{0.533196in}}%\n\\pgfpathlineto{\\pgfqpoint{0.861526in}{0.540627in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928917in}{0.562798in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996307in}{0.599345in}}%\n\\pgfpathlineto{\\pgfqpoint{1.063698in}{0.649667in}}%\n\\pgfpathlineto{\\pgfqpoint{1.131089in}{0.712939in}}%\n\\pgfpathlineto{\\pgfqpoint{1.198480in}{0.788122in}}%\n\\pgfpathlineto{\\pgfqpoint{1.265870in}{0.873980in}}%\n\\pgfpathlineto{\\pgfqpoint{1.333261in}{0.969105in}}%\n\\pgfpathlineto{\\pgfqpoint{1.400652in}{1.071934in}}%\n\\pgfpathlineto{\\pgfqpoint{1.468042in}{1.180779in}}%\n\\pgfpathlineto{\\pgfqpoint{1.535433in}{1.293853in}}%\n\\pgfpathlineto{\\pgfqpoint{1.602824in}{1.409299in}}%\n\\pgfpathlineto{\\pgfqpoint{1.670215in}{1.525221in}}%\n\\pgfpathlineto{\\pgfqpoint{1.737605in}{1.639716in}}%\n\\pgfpathlineto{\\pgfqpoint{1.804996in}{1.750904in}}%\n\\pgfpathlineto{\\pgfqpoint{1.872387in}{1.856959in}}%\n\\pgfpathlineto{\\pgfqpoint{1.939778in}{1.956139in}}%\n\\pgfpathlineto{\\pgfqpoint{2.007168in}{2.046817in}}%\n\\pgfpathlineto{\\pgfqpoint{2.074559in}{2.127504in}}%\n\\pgfpathlineto{\\pgfqpoint{2.141950in}{2.196874in}}%\n\\pgfpathlineto{\\pgfqpoint{2.209341in}{2.253788in}}%\n\\pgfpathlineto{\\pgfqpoint{2.276731in}{2.297312in}}%\n\\pgfpathlineto{\\pgfqpoint{2.344122in}{2.326731in}}%\n\\pgfpathlineto{\\pgfqpoint{2.411513in}{2.341562in}}%\n\\pgfpathlineto{\\pgfqpoint{2.478904in}{2.341562in}}%\n\\pgfpathlineto{\\pgfqpoint{2.546294in}{2.326731in}}%\n\\pgfpathlineto{\\pgfqpoint{2.613685in}{2.297312in}}%\n\\pgfpathlineto{\\pgfqpoint{2.681076in}{2.253788in}}%\n\\pgfpathlineto{\\pgfqpoint{2.748466in}{2.196874in}}%\n\\pgfpathlineto{\\pgfqpoint{2.815857in}{2.127504in}}%\n\\pgfpathlineto{\\pgfqpoint{2.883248in}{2.046817in}}%\n\\pgfpathlineto{\\pgfqpoint{2.950639in}{1.956139in}}%\n\\pgfpathlineto{\\pgfqpoint{3.018029in}{1.856959in}}%\n\\pgfpathlineto{\\pgfqpoint{3.085420in}{1.750904in}}%\n\\pgfpathlineto{\\pgfqpoint{3.152811in}{1.639716in}}%\n\\pgfpathlineto{\\pgfqpoint{3.220202in}{1.525221in}}%\n\\pgfpathlineto{\\pgfqpoint{3.287592in}{1.409299in}}%\n\\pgfpathlineto{\\pgfqpoint{3.354983in}{1.293853in}}%\n\\pgfpathlineto{\\pgfqpoint{3.422374in}{1.180779in}}%\n\\pgfpathlineto{\\pgfqpoint{3.489765in}{1.071934in}}%\n\\pgfpathlineto{\\pgfqpoint{3.557155in}{0.969105in}}%\n\\pgfpathlineto{\\pgfqpoint{3.624546in}{0.873980in}}%\n\\pgfpathlineto{\\pgfqpoint{3.691937in}{0.788122in}}%\n\\pgfpathlineto{\\pgfqpoint{3.759328in}{0.712939in}}%\n\\pgfpathlineto{\\pgfqpoint{3.826718in}{0.649667in}}%\n\\pgfpathlineto{\\pgfqpoint{3.894109in}{0.599345in}}%\n\\pgfpathlineto{\\pgfqpoint{3.961500in}{0.562798in}}%\n\\pgfpathlineto{\\pgfqpoint{4.028890in}{0.540627in}}%\n\\pgfpathlineto{\\pgfqpoint{4.096281in}{0.533196in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=2.515314in,,base]{\\sffamily\\fontsize{12.000000}{14.400000}\\selectfont Cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/cos_with_latex.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.797672in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.797672in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.334203in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.334203in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.870735in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.870735in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.407267in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.943799in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.943799in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.480331in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.480331in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.016863in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.016863in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.098667in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.447600in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.409044in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.691573in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.653018in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.935546in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.896991in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.179520in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.140964in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.423493in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.384937in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.667466in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.628910in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.911439in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.872884in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.155413in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.116857in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.399386in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.360830in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.098667in,y=1.422490in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{2.144759in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{0.447600in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{0.455612in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{0.479517in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{0.518921in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.573179in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.641399in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{0.722461in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.815034in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.917597in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{1.028468in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{1.145824in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{1.267740in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{1.392214in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{1.517201in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{1.640649in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{1.760532in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{1.874881in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{1.981817in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{2.079586in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{2.166583in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{2.241377in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{2.302742in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{2.349670in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{2.381389in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{2.397381in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{2.397381in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{2.381389in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{2.349670in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{2.302742in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{2.241377in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{2.166583in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{2.079586in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{1.981817in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{1.874881in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{1.760532in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{1.640649in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{1.517201in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{1.392214in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{1.267740in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{1.145824in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{1.028468in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{0.917597in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{0.815034in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{0.722461in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{0.641399in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{0.573179in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{0.518921in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{0.479517in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{0.455612in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{0.447600in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=2.578203in,,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sin_no_latex.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage{fontspec}\n%%   \\setmainfont{DejaVu Serif}\n%%   \\setsansfont{DejaVu Sans}\n%%   \\setmonofont{DejaVu Sans Mono}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.868550in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.868550in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −3}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.394102in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.394102in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −2}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.919655in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.919655in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −1}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.445208in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.970761in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.970761in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 1}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.496314in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.496314in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 2}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.021867in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.021867in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 3}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=0.155587in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{0.532731in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.194552in,y=0.479970in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −1.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{0.985055in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.194552in,y=0.932294in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −0.5}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{1.437379in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=1.384618in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{1.889703in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=1.836942in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0.5}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{2.342027in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=2.289266in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 1.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.138997in,y=1.437379in,,bottom,rotate=90.000000]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.629028in}{0.442778in}}{\\pgfqpoint{3.632361in}{1.989203in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.794135in}{1.437379in}}%\n\\pgfpathlineto{\\pgfqpoint{0.861526in}{1.321695in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928917in}{1.207911in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996307in}{1.097895in}}%\n\\pgfpathlineto{\\pgfqpoint{1.063698in}{0.993453in}}%\n\\pgfpathlineto{\\pgfqpoint{1.131089in}{0.896300in}}%\n\\pgfpathlineto{\\pgfqpoint{1.198480in}{0.808031in}}%\n\\pgfpathlineto{\\pgfqpoint{1.265870in}{0.730097in}}%\n\\pgfpathlineto{\\pgfqpoint{1.333261in}{0.663776in}}%\n\\pgfpathlineto{\\pgfqpoint{1.400652in}{0.610158in}}%\n\\pgfpathlineto{\\pgfqpoint{1.468042in}{0.570122in}}%\n\\pgfpathlineto{\\pgfqpoint{1.535433in}{0.544327in}}%\n\\pgfpathlineto{\\pgfqpoint{1.602824in}{0.533196in}}%\n\\pgfpathlineto{\\pgfqpoint{1.670215in}{0.536912in}}%\n\\pgfpathlineto{\\pgfqpoint{1.737605in}{0.555413in}}%\n\\pgfpathlineto{\\pgfqpoint{1.804996in}{0.588396in}}%\n\\pgfpathlineto{\\pgfqpoint{1.872387in}{0.635319in}}%\n\\pgfpathlineto{\\pgfqpoint{1.939778in}{0.695412in}}%\n\\pgfpathlineto{\\pgfqpoint{2.007168in}{0.767688in}}%\n\\pgfpathlineto{\\pgfqpoint{2.074559in}{0.850961in}}%\n\\pgfpathlineto{\\pgfqpoint{2.141950in}{0.943862in}}%\n\\pgfpathlineto{\\pgfqpoint{2.209341in}{1.044867in}}%\n\\pgfpathlineto{\\pgfqpoint{2.276731in}{1.152317in}}%\n\\pgfpathlineto{\\pgfqpoint{2.344122in}{1.264448in}}%\n\\pgfpathlineto{\\pgfqpoint{2.411513in}{1.379418in}}%\n\\pgfpathlineto{\\pgfqpoint{2.478904in}{1.495340in}}%\n\\pgfpathlineto{\\pgfqpoint{2.546294in}{1.610311in}}%\n\\pgfpathlineto{\\pgfqpoint{2.613685in}{1.722441in}}%\n\\pgfpathlineto{\\pgfqpoint{2.681076in}{1.829891in}}%\n\\pgfpathlineto{\\pgfqpoint{2.748466in}{1.930896in}}%\n\\pgfpathlineto{\\pgfqpoint{2.815857in}{2.023798in}}%\n\\pgfpathlineto{\\pgfqpoint{2.883248in}{2.107070in}}%\n\\pgfpathlineto{\\pgfqpoint{2.950639in}{2.179346in}}%\n\\pgfpathlineto{\\pgfqpoint{3.018029in}{2.239440in}}%\n\\pgfpathlineto{\\pgfqpoint{3.085420in}{2.286363in}}%\n\\pgfpathlineto{\\pgfqpoint{3.152811in}{2.319346in}}%\n\\pgfpathlineto{\\pgfqpoint{3.220202in}{2.337847in}}%\n\\pgfpathlineto{\\pgfqpoint{3.287592in}{2.341562in}}%\n\\pgfpathlineto{\\pgfqpoint{3.354983in}{2.330431in}}%\n\\pgfpathlineto{\\pgfqpoint{3.422374in}{2.304636in}}%\n\\pgfpathlineto{\\pgfqpoint{3.489765in}{2.264601in}}%\n\\pgfpathlineto{\\pgfqpoint{3.557155in}{2.210982in}}%\n\\pgfpathlineto{\\pgfqpoint{3.624546in}{2.144662in}}%\n\\pgfpathlineto{\\pgfqpoint{3.691937in}{2.066727in}}%\n\\pgfpathlineto{\\pgfqpoint{3.759328in}{1.978459in}}%\n\\pgfpathlineto{\\pgfqpoint{3.826718in}{1.881306in}}%\n\\pgfpathlineto{\\pgfqpoint{3.894109in}{1.776864in}}%\n\\pgfpathlineto{\\pgfqpoint{3.961500in}{1.666847in}}%\n\\pgfpathlineto{\\pgfqpoint{4.028890in}{1.553063in}}%\n\\pgfpathlineto{\\pgfqpoint{4.096281in}{1.437379in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=2.515314in,,base]{\\sffamily\\fontsize{12.000000}{14.400000}\\selectfont Sine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sin_with_latex.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.797672in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.797672in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.334203in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.334203in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.870735in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.870735in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.407267in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.943799in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.943799in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.480331in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.480331in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.016863in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.016863in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.098667in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.447099in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.408543in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.690947in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.652391in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.934795in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.896239in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.178642in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.140087in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.422490in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.383935in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.666338in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.627783in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.910186in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.871630in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.154034in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.115478in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.397882in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.359326in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.098667in,y=1.422490in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{2.144759in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{1.422490in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{1.297760in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{1.175078in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{1.056458in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.943849in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.839098in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{0.743927in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.659898in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.588391in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{0.530580in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{0.487414in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{0.459602in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{0.447600in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{0.451606in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{0.471554in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{0.507116in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{0.557709in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{0.622501in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{0.700429in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{0.790214in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{0.890380in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{0.999284in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{1.115136in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{1.236036in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{1.359997in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{1.484984in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{1.608945in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{1.729844in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{1.845697in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{1.954600in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{2.054767in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{2.144551in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{2.222479in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{2.287272in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{2.337864in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{2.373427in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{2.393375in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{2.397381in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{2.385379in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{2.357567in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{2.314401in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{2.256589in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{2.185082in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{2.101053in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{2.005882in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{1.901132in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{1.788523in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{1.669903in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{1.547221in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{1.422490in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=2.578203in,,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Sine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_after_revert.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage{fontspec}\n%%   \\setmainfont{DejaVu Serif}\n%%   \\setsansfont{DejaVu Sans}\n%%   \\setmonofont{DejaVu Sans Mono}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.868550in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.868550in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −3}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.394102in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.394102in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −2}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.919655in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.919655in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −1}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.445208in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.970761in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.970761in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 1}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.496314in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.496314in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 2}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.021867in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.021867in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 3}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=0.155587in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{0.533196in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.194552in,y=0.480435in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −1.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{0.985404in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.194552in,y=0.932642in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −0.5}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{1.437612in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=1.384850in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{1.889819in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=1.837058in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0.5}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{2.342027in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=2.289266in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 1.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.138997in,y=1.437379in,,bottom,rotate=90.000000]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.629028in}{0.442778in}}{\\pgfqpoint{3.632361in}{1.989203in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.794135in}{1.437612in}}%\n\\pgfpathlineto{\\pgfqpoint{0.861526in}{1.321958in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928917in}{1.208202in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996307in}{1.098214in}}%\n\\pgfpathlineto{\\pgfqpoint{1.063698in}{0.993799in}}%\n\\pgfpathlineto{\\pgfqpoint{1.131089in}{0.896671in}}%\n\\pgfpathlineto{\\pgfqpoint{1.198480in}{0.808426in}}%\n\\pgfpathlineto{\\pgfqpoint{1.265870in}{0.730511in}}%\n\\pgfpathlineto{\\pgfqpoint{1.333261in}{0.664207in}}%\n\\pgfpathlineto{\\pgfqpoint{1.400652in}{0.610603in}}%\n\\pgfpathlineto{\\pgfqpoint{1.468042in}{0.570578in}}%\n\\pgfpathlineto{\\pgfqpoint{1.535433in}{0.544789in}}%\n\\pgfpathlineto{\\pgfqpoint{1.602824in}{0.533661in}}%\n\\pgfpathlineto{\\pgfqpoint{1.670215in}{0.537375in}}%\n\\pgfpathlineto{\\pgfqpoint{1.737605in}{0.555872in}}%\n\\pgfpathlineto{\\pgfqpoint{1.804996in}{0.588846in}}%\n\\pgfpathlineto{\\pgfqpoint{1.872387in}{0.635757in}}%\n\\pgfpathlineto{\\pgfqpoint{1.939778in}{0.695835in}}%\n\\pgfpathlineto{\\pgfqpoint{2.007168in}{0.768093in}}%\n\\pgfpathlineto{\\pgfqpoint{2.074559in}{0.851344in}}%\n\\pgfpathlineto{\\pgfqpoint{2.141950in}{0.944221in}}%\n\\pgfpathlineto{\\pgfqpoint{2.209341in}{1.045200in}}%\n\\pgfpathlineto{\\pgfqpoint{2.276731in}{1.152623in}}%\n\\pgfpathlineto{\\pgfqpoint{2.344122in}{1.264725in}}%\n\\pgfpathlineto{\\pgfqpoint{2.411513in}{1.379666in}}%\n\\pgfpathlineto{\\pgfqpoint{2.478904in}{1.495558in}}%\n\\pgfpathlineto{\\pgfqpoint{2.546294in}{1.610498in}}%\n\\pgfpathlineto{\\pgfqpoint{2.613685in}{1.722600in}}%\n\\pgfpathlineto{\\pgfqpoint{2.681076in}{1.830023in}}%\n\\pgfpathlineto{\\pgfqpoint{2.748466in}{1.931002in}}%\n\\pgfpathlineto{\\pgfqpoint{2.815857in}{2.023879in}}%\n\\pgfpathlineto{\\pgfqpoint{2.883248in}{2.107131in}}%\n\\pgfpathlineto{\\pgfqpoint{2.950639in}{2.179388in}}%\n\\pgfpathlineto{\\pgfqpoint{3.018029in}{2.239466in}}%\n\\pgfpathlineto{\\pgfqpoint{3.085420in}{2.286377in}}%\n\\pgfpathlineto{\\pgfqpoint{3.152811in}{2.319352in}}%\n\\pgfpathlineto{\\pgfqpoint{3.220202in}{2.337848in}}%\n\\pgfpathlineto{\\pgfqpoint{3.287592in}{2.341562in}}%\n\\pgfpathlineto{\\pgfqpoint{3.354983in}{2.330434in}}%\n\\pgfpathlineto{\\pgfqpoint{3.422374in}{2.304646in}}%\n\\pgfpathlineto{\\pgfqpoint{3.489765in}{2.264621in}}%\n\\pgfpathlineto{\\pgfqpoint{3.557155in}{2.211016in}}%\n\\pgfpathlineto{\\pgfqpoint{3.624546in}{2.144712in}}%\n\\pgfpathlineto{\\pgfqpoint{3.691937in}{2.066798in}}%\n\\pgfpathlineto{\\pgfqpoint{3.759328in}{1.978552in}}%\n\\pgfpathlineto{\\pgfqpoint{3.826718in}{1.881424in}}%\n\\pgfpathlineto{\\pgfqpoint{3.894109in}{1.777009in}}%\n\\pgfpathlineto{\\pgfqpoint{3.961500in}{1.667021in}}%\n\\pgfpathlineto{\\pgfqpoint{4.028890in}{1.553266in}}%\n\\pgfpathlineto{\\pgfqpoint{4.096281in}{1.437612in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.629028in}{0.442778in}}{\\pgfqpoint{3.632361in}{1.989203in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.794135in}{0.533196in}}%\n\\pgfpathlineto{\\pgfqpoint{0.861526in}{0.540621in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928917in}{0.562775in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996307in}{0.599294in}}%\n\\pgfpathlineto{\\pgfqpoint{1.063698in}{0.649577in}}%\n\\pgfpathlineto{\\pgfqpoint{1.131089in}{0.712801in}}%\n\\pgfpathlineto{\\pgfqpoint{1.198480in}{0.787925in}}%\n\\pgfpathlineto{\\pgfqpoint{1.265870in}{0.873718in}}%\n\\pgfpathlineto{\\pgfqpoint{1.333261in}{0.968769in}}%\n\\pgfpathlineto{\\pgfqpoint{1.400652in}{1.071519in}}%\n\\pgfpathlineto{\\pgfqpoint{1.468042in}{1.180280in}}%\n\\pgfpathlineto{\\pgfqpoint{1.535433in}{1.293267in}}%\n\\pgfpathlineto{\\pgfqpoint{1.602824in}{1.408624in}}%\n\\pgfpathlineto{\\pgfqpoint{1.670215in}{1.524456in}}%\n\\pgfpathlineto{\\pgfqpoint{1.737605in}{1.638863in}}%\n\\pgfpathlineto{\\pgfqpoint{1.804996in}{1.749965in}}%\n\\pgfpathlineto{\\pgfqpoint{1.872387in}{1.855938in}}%\n\\pgfpathlineto{\\pgfqpoint{1.939778in}{1.955043in}}%\n\\pgfpathlineto{\\pgfqpoint{2.007168in}{2.045651in}}%\n\\pgfpathlineto{\\pgfqpoint{2.074559in}{2.126275in}}%\n\\pgfpathlineto{\\pgfqpoint{2.141950in}{2.195592in}}%\n\\pgfpathlineto{\\pgfqpoint{2.209341in}{2.252462in}}%\n\\pgfpathlineto{\\pgfqpoint{2.276731in}{2.295952in}}%\n\\pgfpathlineto{\\pgfqpoint{2.344122in}{2.325349in}}%\n\\pgfpathlineto{\\pgfqpoint{2.411513in}{2.340169in}}%\n\\pgfpathlineto{\\pgfqpoint{2.478904in}{2.340169in}}%\n\\pgfpathlineto{\\pgfqpoint{2.546294in}{2.325349in}}%\n\\pgfpathlineto{\\pgfqpoint{2.613685in}{2.295952in}}%\n\\pgfpathlineto{\\pgfqpoint{2.681076in}{2.252462in}}%\n\\pgfpathlineto{\\pgfqpoint{2.748466in}{2.195592in}}%\n\\pgfpathlineto{\\pgfqpoint{2.815857in}{2.126275in}}%\n\\pgfpathlineto{\\pgfqpoint{2.883248in}{2.045651in}}%\n\\pgfpathlineto{\\pgfqpoint{2.950639in}{1.955043in}}%\n\\pgfpathlineto{\\pgfqpoint{3.018029in}{1.855938in}}%\n\\pgfpathlineto{\\pgfqpoint{3.085420in}{1.749965in}}%\n\\pgfpathlineto{\\pgfqpoint{3.152811in}{1.638863in}}%\n\\pgfpathlineto{\\pgfqpoint{3.220202in}{1.524456in}}%\n\\pgfpathlineto{\\pgfqpoint{3.287592in}{1.408624in}}%\n\\pgfpathlineto{\\pgfqpoint{3.354983in}{1.293267in}}%\n\\pgfpathlineto{\\pgfqpoint{3.422374in}{1.180280in}}%\n\\pgfpathlineto{\\pgfqpoint{3.489765in}{1.071519in}}%\n\\pgfpathlineto{\\pgfqpoint{3.557155in}{0.968769in}}%\n\\pgfpathlineto{\\pgfqpoint{3.624546in}{0.873718in}}%\n\\pgfpathlineto{\\pgfqpoint{3.691937in}{0.787925in}}%\n\\pgfpathlineto{\\pgfqpoint{3.759328in}{0.712801in}}%\n\\pgfpathlineto{\\pgfqpoint{3.826718in}{0.649577in}}%\n\\pgfpathlineto{\\pgfqpoint{3.894109in}{0.599294in}}%\n\\pgfpathlineto{\\pgfqpoint{3.961500in}{0.562775in}}%\n\\pgfpathlineto{\\pgfqpoint{4.028890in}{0.540621in}}%\n\\pgfpathlineto{\\pgfqpoint{4.096281in}{0.533196in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=2.515314in,,base]{\\sffamily\\fontsize{12.000000}{14.400000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.726250in}{1.913155in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616455in}{1.913155in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.644232in}{1.913155in}}{\\pgfqpoint{1.644232in}{1.940933in}}%\n\\pgfpathlineto{\\pgfqpoint{1.644232in}{2.334759in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.644232in}{2.362536in}}{\\pgfqpoint{1.616455in}{2.362536in}}%\n\\pgfpathlineto{\\pgfqpoint{0.726250in}{2.362536in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.698472in}{2.362536in}}{\\pgfqpoint{0.698472in}{2.334759in}}%\n\\pgfpathlineto{\\pgfqpoint{0.698472in}{1.940933in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.698472in}{1.913155in}}{\\pgfqpoint{0.726250in}{1.913155in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.754028in}{2.250069in}}%\n\\pgfpathlineto{\\pgfqpoint{1.031806in}{2.250069in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.142917in,y=2.201458in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.754028in}{2.046212in}}%\n\\pgfpathlineto{\\pgfqpoint{1.031806in}{2.046212in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.142917in,y=1.997601in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_big_font_permanent.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.561606in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.475592in}}%\n\\pgfpathlineto{\\pgfqpoint{0.561606in}{2.475592in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.805573in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.805573in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.340881in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.340881in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.876189in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.876189in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.411497in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.411497in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.946805in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.946805in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.482113in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.482113in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.017421in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.017421in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.411497in,y=0.123333in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{0.493815in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.178889in,y=0.445620in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -1.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{0.965788in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.178889in,y=0.917593in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -0.5\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{1.437761in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.286914in,y=1.389566in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{1.909734in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.286914in,y=1.861539in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0.5\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{2.381707in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.286914in,y=2.333512in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 1.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.123333in,y=1.437518in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.561606in}{0.399444in}}{\\pgfqpoint{3.699783in}{2.076148in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.729778in}{1.437761in}}%\n\\pgfpathlineto{\\pgfqpoint{0.798419in}{1.317051in}}%\n\\pgfpathlineto{\\pgfqpoint{0.867061in}{1.198324in}}%\n\\pgfpathlineto{\\pgfqpoint{0.935702in}{1.083529in}}%\n\\pgfpathlineto{\\pgfqpoint{1.004344in}{0.974550in}}%\n\\pgfpathlineto{\\pgfqpoint{1.072986in}{0.873176in}}%\n\\pgfpathlineto{\\pgfqpoint{1.141627in}{0.781074in}}%\n\\pgfpathlineto{\\pgfqpoint{1.210269in}{0.699754in}}%\n\\pgfpathlineto{\\pgfqpoint{1.278911in}{0.630552in}}%\n\\pgfpathlineto{\\pgfqpoint{1.347552in}{0.574604in}}%\n\\pgfpathlineto{\\pgfqpoint{1.416194in}{0.532830in}}%\n\\pgfpathlineto{\\pgfqpoint{1.484835in}{0.505914in}}%\n\\pgfpathlineto{\\pgfqpoint{1.553477in}{0.494300in}}%\n\\pgfpathlineto{\\pgfqpoint{1.622119in}{0.498176in}}%\n\\pgfpathlineto{\\pgfqpoint{1.690760in}{0.517481in}}%\n\\pgfpathlineto{\\pgfqpoint{1.759402in}{0.551897in}}%\n\\pgfpathlineto{\\pgfqpoint{1.828043in}{0.600859in}}%\n\\pgfpathlineto{\\pgfqpoint{1.896685in}{0.663562in}}%\n\\pgfpathlineto{\\pgfqpoint{1.965327in}{0.738978in}}%\n\\pgfpathlineto{\\pgfqpoint{2.033968in}{0.825868in}}%\n\\pgfpathlineto{\\pgfqpoint{2.102610in}{0.922805in}}%\n\\pgfpathlineto{\\pgfqpoint{2.171251in}{1.028198in}}%\n\\pgfpathlineto{\\pgfqpoint{2.239893in}{1.140315in}}%\n\\pgfpathlineto{\\pgfqpoint{2.308535in}{1.257317in}}%\n\\pgfpathlineto{\\pgfqpoint{2.377176in}{1.377282in}}%\n\\pgfpathlineto{\\pgfqpoint{2.445818in}{1.498239in}}%\n\\pgfpathlineto{\\pgfqpoint{2.514460in}{1.618204in}}%\n\\pgfpathlineto{\\pgfqpoint{2.583101in}{1.735206in}}%\n\\pgfpathlineto{\\pgfqpoint{2.651743in}{1.847323in}}%\n\\pgfpathlineto{\\pgfqpoint{2.720384in}{1.952716in}}%\n\\pgfpathlineto{\\pgfqpoint{2.789026in}{2.049653in}}%\n\\pgfpathlineto{\\pgfqpoint{2.857668in}{2.136543in}}%\n\\pgfpathlineto{\\pgfqpoint{2.926309in}{2.211959in}}%\n\\pgfpathlineto{\\pgfqpoint{2.994951in}{2.274662in}}%\n\\pgfpathlineto{\\pgfqpoint{3.063592in}{2.323624in}}%\n\\pgfpathlineto{\\pgfqpoint{3.132234in}{2.358040in}}%\n\\pgfpathlineto{\\pgfqpoint{3.200876in}{2.377345in}}%\n\\pgfpathlineto{\\pgfqpoint{3.269517in}{2.381222in}}%\n\\pgfpathlineto{\\pgfqpoint{3.338159in}{2.369607in}}%\n\\pgfpathlineto{\\pgfqpoint{3.406800in}{2.342691in}}%\n\\pgfpathlineto{\\pgfqpoint{3.475442in}{2.300917in}}%\n\\pgfpathlineto{\\pgfqpoint{3.544084in}{2.244969in}}%\n\\pgfpathlineto{\\pgfqpoint{3.612725in}{2.175767in}}%\n\\pgfpathlineto{\\pgfqpoint{3.681367in}{2.094447in}}%\n\\pgfpathlineto{\\pgfqpoint{3.750009in}{2.002345in}}%\n\\pgfpathlineto{\\pgfqpoint{3.818650in}{1.900971in}}%\n\\pgfpathlineto{\\pgfqpoint{3.887292in}{1.791992in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955933in}{1.677197in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024575in}{1.558470in}}%\n\\pgfpathlineto{\\pgfqpoint{4.093217in}{1.437761in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.561606in}{0.399444in}}{\\pgfqpoint{3.699783in}{2.076148in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.729778in}{0.493815in}}%\n\\pgfpathlineto{\\pgfqpoint{0.798419in}{0.501564in}}%\n\\pgfpathlineto{\\pgfqpoint{0.867061in}{0.524686in}}%\n\\pgfpathlineto{\\pgfqpoint{0.935702in}{0.562801in}}%\n\\pgfpathlineto{\\pgfqpoint{1.004344in}{0.615283in}}%\n\\pgfpathlineto{\\pgfqpoint{1.072986in}{0.681269in}}%\n\\pgfpathlineto{\\pgfqpoint{1.141627in}{0.759678in}}%\n\\pgfpathlineto{\\pgfqpoint{1.210269in}{0.849220in}}%\n\\pgfpathlineto{\\pgfqpoint{1.278911in}{0.948426in}}%\n\\pgfpathlineto{\\pgfqpoint{1.347552in}{1.055667in}}%\n\\pgfpathlineto{\\pgfqpoint{1.416194in}{1.169182in}}%\n\\pgfpathlineto{\\pgfqpoint{1.484835in}{1.287107in}}%\n\\pgfpathlineto{\\pgfqpoint{1.553477in}{1.407506in}}%\n\\pgfpathlineto{\\pgfqpoint{1.622119in}{1.528401in}}%\n\\pgfpathlineto{\\pgfqpoint{1.690760in}{1.647808in}}%\n\\pgfpathlineto{\\pgfqpoint{1.759402in}{1.763767in}}%\n\\pgfpathlineto{\\pgfqpoint{1.828043in}{1.874372in}}%\n\\pgfpathlineto{\\pgfqpoint{1.896685in}{1.977808in}}%\n\\pgfpathlineto{\\pgfqpoint{1.965327in}{2.072376in}}%\n\\pgfpathlineto{\\pgfqpoint{2.033968in}{2.156524in}}%\n\\pgfpathlineto{\\pgfqpoint{2.102610in}{2.228870in}}%\n\\pgfpathlineto{\\pgfqpoint{2.171251in}{2.288227in}}%\n\\pgfpathlineto{\\pgfqpoint{2.239893in}{2.333618in}}%\n\\pgfpathlineto{\\pgfqpoint{2.308535in}{2.364299in}}%\n\\pgfpathlineto{\\pgfqpoint{2.377176in}{2.379767in}}%\n\\pgfpathlineto{\\pgfqpoint{2.445818in}{2.379767in}}%\n\\pgfpathlineto{\\pgfqpoint{2.514460in}{2.364299in}}%\n\\pgfpathlineto{\\pgfqpoint{2.583101in}{2.333618in}}%\n\\pgfpathlineto{\\pgfqpoint{2.651743in}{2.288227in}}%\n\\pgfpathlineto{\\pgfqpoint{2.720384in}{2.228870in}}%\n\\pgfpathlineto{\\pgfqpoint{2.789026in}{2.156524in}}%\n\\pgfpathlineto{\\pgfqpoint{2.857668in}{2.072376in}}%\n\\pgfpathlineto{\\pgfqpoint{2.926309in}{1.977808in}}%\n\\pgfpathlineto{\\pgfqpoint{2.994951in}{1.874372in}}%\n\\pgfpathlineto{\\pgfqpoint{3.063592in}{1.763767in}}%\n\\pgfpathlineto{\\pgfqpoint{3.132234in}{1.647808in}}%\n\\pgfpathlineto{\\pgfqpoint{3.200876in}{1.528401in}}%\n\\pgfpathlineto{\\pgfqpoint{3.269517in}{1.407506in}}%\n\\pgfpathlineto{\\pgfqpoint{3.338159in}{1.287107in}}%\n\\pgfpathlineto{\\pgfqpoint{3.406800in}{1.169182in}}%\n\\pgfpathlineto{\\pgfqpoint{3.475442in}{1.055667in}}%\n\\pgfpathlineto{\\pgfqpoint{3.544084in}{0.948426in}}%\n\\pgfpathlineto{\\pgfqpoint{3.612725in}{0.849220in}}%\n\\pgfpathlineto{\\pgfqpoint{3.681367in}{0.759678in}}%\n\\pgfpathlineto{\\pgfqpoint{3.750009in}{0.681269in}}%\n\\pgfpathlineto{\\pgfqpoint{3.818650in}{0.615283in}}%\n\\pgfpathlineto{\\pgfqpoint{3.887292in}{0.562801in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955933in}{0.524686in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024575in}{0.501564in}}%\n\\pgfpathlineto{\\pgfqpoint{4.093217in}{0.493815in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.561606in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{0.561606in}{2.475592in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.475592in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.561606in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.399444in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.561606in}{2.475592in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.475592in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.411497in,y=2.558925in,,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.658828in}{1.977259in}}%\n\\pgfpathlineto{\\pgfqpoint{1.466606in}{1.977259in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.494383in}{1.977259in}}{\\pgfqpoint{1.494383in}{2.005037in}}%\n\\pgfpathlineto{\\pgfqpoint{1.494383in}{2.378370in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.494383in}{2.406147in}}{\\pgfqpoint{1.466606in}{2.406147in}}%\n\\pgfpathlineto{\\pgfqpoint{0.658828in}{2.406147in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.631050in}{2.406147in}}{\\pgfqpoint{0.631050in}{2.378370in}}%\n\\pgfpathlineto{\\pgfqpoint{0.631050in}{2.005037in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.631050in}{1.977259in}}{\\pgfqpoint{0.658828in}{1.977259in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.686606in}{2.301981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.964383in}{2.301981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.075495in,y=2.253370in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.686606in}{2.108370in}}%\n\\pgfpathlineto{\\pgfqpoint{0.964383in}{2.108370in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.075495in,y=2.059759in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_big_font_temp.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.561606in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.475592in}}%\n\\pgfpathlineto{\\pgfqpoint{0.561606in}{2.475592in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.805573in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.805573in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.340881in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.340881in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.876189in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.876189in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.411497in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.411497in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.946805in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.946805in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.482113in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.482113in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.017421in}{0.399444in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.017421in,y=0.302222in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.411497in,y=0.123333in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{0.493815in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.178889in,y=0.445620in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -1.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{0.965788in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.178889in,y=0.917593in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -0.5\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{1.437761in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.286914in,y=1.389566in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{1.909734in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.286914in,y=1.861539in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0.5\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.561606in}{2.381707in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.286914in,y=2.333512in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 1.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.123333in,y=1.437518in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.561606in}{0.399444in}}{\\pgfqpoint{3.699783in}{2.076148in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.729778in}{1.437761in}}%\n\\pgfpathlineto{\\pgfqpoint{0.798419in}{1.317051in}}%\n\\pgfpathlineto{\\pgfqpoint{0.867061in}{1.198324in}}%\n\\pgfpathlineto{\\pgfqpoint{0.935702in}{1.083529in}}%\n\\pgfpathlineto{\\pgfqpoint{1.004344in}{0.974550in}}%\n\\pgfpathlineto{\\pgfqpoint{1.072986in}{0.873176in}}%\n\\pgfpathlineto{\\pgfqpoint{1.141627in}{0.781074in}}%\n\\pgfpathlineto{\\pgfqpoint{1.210269in}{0.699754in}}%\n\\pgfpathlineto{\\pgfqpoint{1.278911in}{0.630552in}}%\n\\pgfpathlineto{\\pgfqpoint{1.347552in}{0.574604in}}%\n\\pgfpathlineto{\\pgfqpoint{1.416194in}{0.532830in}}%\n\\pgfpathlineto{\\pgfqpoint{1.484835in}{0.505914in}}%\n\\pgfpathlineto{\\pgfqpoint{1.553477in}{0.494300in}}%\n\\pgfpathlineto{\\pgfqpoint{1.622119in}{0.498176in}}%\n\\pgfpathlineto{\\pgfqpoint{1.690760in}{0.517481in}}%\n\\pgfpathlineto{\\pgfqpoint{1.759402in}{0.551897in}}%\n\\pgfpathlineto{\\pgfqpoint{1.828043in}{0.600859in}}%\n\\pgfpathlineto{\\pgfqpoint{1.896685in}{0.663562in}}%\n\\pgfpathlineto{\\pgfqpoint{1.965327in}{0.738978in}}%\n\\pgfpathlineto{\\pgfqpoint{2.033968in}{0.825868in}}%\n\\pgfpathlineto{\\pgfqpoint{2.102610in}{0.922805in}}%\n\\pgfpathlineto{\\pgfqpoint{2.171251in}{1.028198in}}%\n\\pgfpathlineto{\\pgfqpoint{2.239893in}{1.140315in}}%\n\\pgfpathlineto{\\pgfqpoint{2.308535in}{1.257317in}}%\n\\pgfpathlineto{\\pgfqpoint{2.377176in}{1.377282in}}%\n\\pgfpathlineto{\\pgfqpoint{2.445818in}{1.498239in}}%\n\\pgfpathlineto{\\pgfqpoint{2.514460in}{1.618204in}}%\n\\pgfpathlineto{\\pgfqpoint{2.583101in}{1.735206in}}%\n\\pgfpathlineto{\\pgfqpoint{2.651743in}{1.847323in}}%\n\\pgfpathlineto{\\pgfqpoint{2.720384in}{1.952716in}}%\n\\pgfpathlineto{\\pgfqpoint{2.789026in}{2.049653in}}%\n\\pgfpathlineto{\\pgfqpoint{2.857668in}{2.136543in}}%\n\\pgfpathlineto{\\pgfqpoint{2.926309in}{2.211959in}}%\n\\pgfpathlineto{\\pgfqpoint{2.994951in}{2.274662in}}%\n\\pgfpathlineto{\\pgfqpoint{3.063592in}{2.323624in}}%\n\\pgfpathlineto{\\pgfqpoint{3.132234in}{2.358040in}}%\n\\pgfpathlineto{\\pgfqpoint{3.200876in}{2.377345in}}%\n\\pgfpathlineto{\\pgfqpoint{3.269517in}{2.381222in}}%\n\\pgfpathlineto{\\pgfqpoint{3.338159in}{2.369607in}}%\n\\pgfpathlineto{\\pgfqpoint{3.406800in}{2.342691in}}%\n\\pgfpathlineto{\\pgfqpoint{3.475442in}{2.300917in}}%\n\\pgfpathlineto{\\pgfqpoint{3.544084in}{2.244969in}}%\n\\pgfpathlineto{\\pgfqpoint{3.612725in}{2.175767in}}%\n\\pgfpathlineto{\\pgfqpoint{3.681367in}{2.094447in}}%\n\\pgfpathlineto{\\pgfqpoint{3.750009in}{2.002345in}}%\n\\pgfpathlineto{\\pgfqpoint{3.818650in}{1.900971in}}%\n\\pgfpathlineto{\\pgfqpoint{3.887292in}{1.791992in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955933in}{1.677197in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024575in}{1.558470in}}%\n\\pgfpathlineto{\\pgfqpoint{4.093217in}{1.437761in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.561606in}{0.399444in}}{\\pgfqpoint{3.699783in}{2.076148in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.729778in}{0.493815in}}%\n\\pgfpathlineto{\\pgfqpoint{0.798419in}{0.501564in}}%\n\\pgfpathlineto{\\pgfqpoint{0.867061in}{0.524686in}}%\n\\pgfpathlineto{\\pgfqpoint{0.935702in}{0.562801in}}%\n\\pgfpathlineto{\\pgfqpoint{1.004344in}{0.615283in}}%\n\\pgfpathlineto{\\pgfqpoint{1.072986in}{0.681269in}}%\n\\pgfpathlineto{\\pgfqpoint{1.141627in}{0.759678in}}%\n\\pgfpathlineto{\\pgfqpoint{1.210269in}{0.849220in}}%\n\\pgfpathlineto{\\pgfqpoint{1.278911in}{0.948426in}}%\n\\pgfpathlineto{\\pgfqpoint{1.347552in}{1.055667in}}%\n\\pgfpathlineto{\\pgfqpoint{1.416194in}{1.169182in}}%\n\\pgfpathlineto{\\pgfqpoint{1.484835in}{1.287107in}}%\n\\pgfpathlineto{\\pgfqpoint{1.553477in}{1.407506in}}%\n\\pgfpathlineto{\\pgfqpoint{1.622119in}{1.528401in}}%\n\\pgfpathlineto{\\pgfqpoint{1.690760in}{1.647808in}}%\n\\pgfpathlineto{\\pgfqpoint{1.759402in}{1.763767in}}%\n\\pgfpathlineto{\\pgfqpoint{1.828043in}{1.874372in}}%\n\\pgfpathlineto{\\pgfqpoint{1.896685in}{1.977808in}}%\n\\pgfpathlineto{\\pgfqpoint{1.965327in}{2.072376in}}%\n\\pgfpathlineto{\\pgfqpoint{2.033968in}{2.156524in}}%\n\\pgfpathlineto{\\pgfqpoint{2.102610in}{2.228870in}}%\n\\pgfpathlineto{\\pgfqpoint{2.171251in}{2.288227in}}%\n\\pgfpathlineto{\\pgfqpoint{2.239893in}{2.333618in}}%\n\\pgfpathlineto{\\pgfqpoint{2.308535in}{2.364299in}}%\n\\pgfpathlineto{\\pgfqpoint{2.377176in}{2.379767in}}%\n\\pgfpathlineto{\\pgfqpoint{2.445818in}{2.379767in}}%\n\\pgfpathlineto{\\pgfqpoint{2.514460in}{2.364299in}}%\n\\pgfpathlineto{\\pgfqpoint{2.583101in}{2.333618in}}%\n\\pgfpathlineto{\\pgfqpoint{2.651743in}{2.288227in}}%\n\\pgfpathlineto{\\pgfqpoint{2.720384in}{2.228870in}}%\n\\pgfpathlineto{\\pgfqpoint{2.789026in}{2.156524in}}%\n\\pgfpathlineto{\\pgfqpoint{2.857668in}{2.072376in}}%\n\\pgfpathlineto{\\pgfqpoint{2.926309in}{1.977808in}}%\n\\pgfpathlineto{\\pgfqpoint{2.994951in}{1.874372in}}%\n\\pgfpathlineto{\\pgfqpoint{3.063592in}{1.763767in}}%\n\\pgfpathlineto{\\pgfqpoint{3.132234in}{1.647808in}}%\n\\pgfpathlineto{\\pgfqpoint{3.200876in}{1.528401in}}%\n\\pgfpathlineto{\\pgfqpoint{3.269517in}{1.407506in}}%\n\\pgfpathlineto{\\pgfqpoint{3.338159in}{1.287107in}}%\n\\pgfpathlineto{\\pgfqpoint{3.406800in}{1.169182in}}%\n\\pgfpathlineto{\\pgfqpoint{3.475442in}{1.055667in}}%\n\\pgfpathlineto{\\pgfqpoint{3.544084in}{0.948426in}}%\n\\pgfpathlineto{\\pgfqpoint{3.612725in}{0.849220in}}%\n\\pgfpathlineto{\\pgfqpoint{3.681367in}{0.759678in}}%\n\\pgfpathlineto{\\pgfqpoint{3.750009in}{0.681269in}}%\n\\pgfpathlineto{\\pgfqpoint{3.818650in}{0.615283in}}%\n\\pgfpathlineto{\\pgfqpoint{3.887292in}{0.562801in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955933in}{0.524686in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024575in}{0.501564in}}%\n\\pgfpathlineto{\\pgfqpoint{4.093217in}{0.493815in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.561606in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{0.561606in}{2.475592in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.475592in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.561606in}{0.399444in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.399444in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.561606in}{2.475592in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.475592in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.411497in,y=2.558925in,,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.658828in}{1.977259in}}%\n\\pgfpathlineto{\\pgfqpoint{1.466606in}{1.977259in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.494383in}{1.977259in}}{\\pgfqpoint{1.494383in}{2.005037in}}%\n\\pgfpathlineto{\\pgfqpoint{1.494383in}{2.378370in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.494383in}{2.406147in}}{\\pgfqpoint{1.466606in}{2.406147in}}%\n\\pgfpathlineto{\\pgfqpoint{0.658828in}{2.406147in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.631050in}{2.406147in}}{\\pgfqpoint{0.631050in}{2.378370in}}%\n\\pgfpathlineto{\\pgfqpoint{0.631050in}{2.005037in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.631050in}{1.977259in}}{\\pgfqpoint{0.658828in}{1.977259in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.686606in}{2.301981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.964383in}{2.301981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.075495in,y=2.253370in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.686606in}{2.108370in}}%\n\\pgfpathlineto{\\pgfqpoint{0.964383in}{2.108370in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.075495in,y=2.059759in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_big_label_title.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.586272in}{0.424111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.424111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.456314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.586272in}{2.456314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.828613in}{0.424111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.828613in,y=0.326889in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.360352in}{0.424111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.360352in,y=0.326889in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.892091in}{0.424111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.892091in,y=0.326889in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.423830in}{0.424111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.423830in,y=0.326889in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.955569in}{0.424111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.955569in,y=0.326889in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.487308in}{0.424111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.487308in,y=0.326889in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.019047in}{0.424111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.019047in,y=0.326889in,,top]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.423830in,y=0.148000in,,top]{\\rmfamily\\fontsize{12.000000}{14.400000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.586272in}{0.516484in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.203555in,y=0.468289in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -1.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.586272in}{0.978467in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.203555in,y=0.930272in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle -0.5\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.586272in}{1.440450in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.311580in,y=1.392255in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.586272in}{1.902433in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.311580in,y=1.854238in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 0.5\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.586272in}{2.364416in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.311580in,y=2.316222in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle 1.0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.148000in,y=1.440212in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{12.000000}{14.400000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.586272in}{0.424111in}}{\\pgfqpoint{3.675116in}{2.032203in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.753323in}{1.440450in}}%\n\\pgfpathlineto{\\pgfqpoint{0.821507in}{1.322296in}}%\n\\pgfpathlineto{\\pgfqpoint{0.889691in}{1.206082in}}%\n\\pgfpathlineto{\\pgfqpoint{0.957875in}{1.093716in}}%\n\\pgfpathlineto{\\pgfqpoint{1.026059in}{0.987043in}}%\n\\pgfpathlineto{\\pgfqpoint{1.094243in}{0.887816in}}%\n\\pgfpathlineto{\\pgfqpoint{1.162427in}{0.797663in}}%\n\\pgfpathlineto{\\pgfqpoint{1.230611in}{0.718064in}}%\n\\pgfpathlineto{\\pgfqpoint{1.298795in}{0.650327in}}%\n\\pgfpathlineto{\\pgfqpoint{1.366979in}{0.595564in}}%\n\\pgfpathlineto{\\pgfqpoint{1.435163in}{0.554673in}}%\n\\pgfpathlineto{\\pgfqpoint{1.503347in}{0.528327in}}%\n\\pgfpathlineto{\\pgfqpoint{1.571531in}{0.516958in}}%\n\\pgfpathlineto{\\pgfqpoint{1.639715in}{0.520753in}}%\n\\pgfpathlineto{\\pgfqpoint{1.707899in}{0.539649in}}%\n\\pgfpathlineto{\\pgfqpoint{1.776083in}{0.573337in}}%\n\\pgfpathlineto{\\pgfqpoint{1.844267in}{0.621262in}}%\n\\pgfpathlineto{\\pgfqpoint{1.912451in}{0.682638in}}%\n\\pgfpathlineto{\\pgfqpoint{1.980635in}{0.756458in}}%\n\\pgfpathlineto{\\pgfqpoint{2.048819in}{0.841509in}}%\n\\pgfpathlineto{\\pgfqpoint{2.117003in}{0.936394in}}%\n\\pgfpathlineto{\\pgfqpoint{2.185187in}{1.039556in}}%\n\\pgfpathlineto{\\pgfqpoint{2.253371in}{1.149301in}}%\n\\pgfpathlineto{\\pgfqpoint{2.321554in}{1.263826in}}%\n\\pgfpathlineto{\\pgfqpoint{2.389738in}{1.381251in}}%\n\\pgfpathlineto{\\pgfqpoint{2.457922in}{1.499649in}}%\n\\pgfpathlineto{\\pgfqpoint{2.526106in}{1.617074in}}%\n\\pgfpathlineto{\\pgfqpoint{2.594290in}{1.731599in}}%\n\\pgfpathlineto{\\pgfqpoint{2.662474in}{1.841344in}}%\n\\pgfpathlineto{\\pgfqpoint{2.730658in}{1.944506in}}%\n\\pgfpathlineto{\\pgfqpoint{2.798842in}{2.039391in}}%\n\\pgfpathlineto{\\pgfqpoint{2.867026in}{2.124442in}}%\n\\pgfpathlineto{\\pgfqpoint{2.935210in}{2.198261in}}%\n\\pgfpathlineto{\\pgfqpoint{3.003394in}{2.259638in}}%\n\\pgfpathlineto{\\pgfqpoint{3.071578in}{2.307563in}}%\n\\pgfpathlineto{\\pgfqpoint{3.139762in}{2.341250in}}%\n\\pgfpathlineto{\\pgfqpoint{3.207946in}{2.360146in}}%\n\\pgfpathlineto{\\pgfqpoint{3.276130in}{2.363941in}}%\n\\pgfpathlineto{\\pgfqpoint{3.344314in}{2.352572in}}%\n\\pgfpathlineto{\\pgfqpoint{3.412498in}{2.326226in}}%\n\\pgfpathlineto{\\pgfqpoint{3.480682in}{2.285336in}}%\n\\pgfpathlineto{\\pgfqpoint{3.548866in}{2.230573in}}%\n\\pgfpathlineto{\\pgfqpoint{3.617050in}{2.162836in}}%\n\\pgfpathlineto{\\pgfqpoint{3.685234in}{2.083237in}}%\n\\pgfpathlineto{\\pgfqpoint{3.753418in}{1.993084in}}%\n\\pgfpathlineto{\\pgfqpoint{3.821602in}{1.893856in}}%\n\\pgfpathlineto{\\pgfqpoint{3.889786in}{1.787184in}}%\n\\pgfpathlineto{\\pgfqpoint{3.957970in}{1.674818in}}%\n\\pgfpathlineto{\\pgfqpoint{4.026154in}{1.558604in}}%\n\\pgfpathlineto{\\pgfqpoint{4.094338in}{1.440450in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.586272in}{0.424111in}}{\\pgfqpoint{3.675116in}{2.032203in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.753323in}{0.516484in}}%\n\\pgfpathlineto{\\pgfqpoint{0.821507in}{0.524069in}}%\n\\pgfpathlineto{\\pgfqpoint{0.889691in}{0.546702in}}%\n\\pgfpathlineto{\\pgfqpoint{0.957875in}{0.584010in}}%\n\\pgfpathlineto{\\pgfqpoint{1.026059in}{0.635381in}}%\n\\pgfpathlineto{\\pgfqpoint{1.094243in}{0.699971in}}%\n\\pgfpathlineto{\\pgfqpoint{1.162427in}{0.776719in}}%\n\\pgfpathlineto{\\pgfqpoint{1.230611in}{0.864366in}}%\n\\pgfpathlineto{\\pgfqpoint{1.298795in}{0.961473in}}%\n\\pgfpathlineto{\\pgfqpoint{1.366979in}{1.066444in}}%\n\\pgfpathlineto{\\pgfqpoint{1.435163in}{1.177556in}}%\n\\pgfpathlineto{\\pgfqpoint{1.503347in}{1.292985in}}%\n\\pgfpathlineto{\\pgfqpoint{1.571531in}{1.410835in}}%\n\\pgfpathlineto{\\pgfqpoint{1.639715in}{1.529172in}}%\n\\pgfpathlineto{\\pgfqpoint{1.707899in}{1.646052in}}%\n\\pgfpathlineto{\\pgfqpoint{1.776083in}{1.759555in}}%\n\\pgfpathlineto{\\pgfqpoint{1.844267in}{1.867820in}}%\n\\pgfpathlineto{\\pgfqpoint{1.912451in}{1.969066in}}%\n\\pgfpathlineto{\\pgfqpoint{1.980635in}{2.061633in}}%\n\\pgfpathlineto{\\pgfqpoint{2.048819in}{2.144000in}}%\n\\pgfpathlineto{\\pgfqpoint{2.117003in}{2.214815in}}%\n\\pgfpathlineto{\\pgfqpoint{2.185187in}{2.272915in}}%\n\\pgfpathlineto{\\pgfqpoint{2.253371in}{2.317345in}}%\n\\pgfpathlineto{\\pgfqpoint{2.321554in}{2.347377in}}%\n\\pgfpathlineto{\\pgfqpoint{2.389738in}{2.362518in}}%\n\\pgfpathlineto{\\pgfqpoint{2.457922in}{2.362518in}}%\n\\pgfpathlineto{\\pgfqpoint{2.526106in}{2.347377in}}%\n\\pgfpathlineto{\\pgfqpoint{2.594290in}{2.317345in}}%\n\\pgfpathlineto{\\pgfqpoint{2.662474in}{2.272915in}}%\n\\pgfpathlineto{\\pgfqpoint{2.730658in}{2.214815in}}%\n\\pgfpathlineto{\\pgfqpoint{2.798842in}{2.144000in}}%\n\\pgfpathlineto{\\pgfqpoint{2.867026in}{2.061633in}}%\n\\pgfpathlineto{\\pgfqpoint{2.935210in}{1.969066in}}%\n\\pgfpathlineto{\\pgfqpoint{3.003394in}{1.867820in}}%\n\\pgfpathlineto{\\pgfqpoint{3.071578in}{1.759555in}}%\n\\pgfpathlineto{\\pgfqpoint{3.139762in}{1.646052in}}%\n\\pgfpathlineto{\\pgfqpoint{3.207946in}{1.529172in}}%\n\\pgfpathlineto{\\pgfqpoint{3.276130in}{1.410835in}}%\n\\pgfpathlineto{\\pgfqpoint{3.344314in}{1.292985in}}%\n\\pgfpathlineto{\\pgfqpoint{3.412498in}{1.177556in}}%\n\\pgfpathlineto{\\pgfqpoint{3.480682in}{1.066444in}}%\n\\pgfpathlineto{\\pgfqpoint{3.548866in}{0.961473in}}%\n\\pgfpathlineto{\\pgfqpoint{3.617050in}{0.864366in}}%\n\\pgfpathlineto{\\pgfqpoint{3.685234in}{0.776719in}}%\n\\pgfpathlineto{\\pgfqpoint{3.753418in}{0.699971in}}%\n\\pgfpathlineto{\\pgfqpoint{3.821602in}{0.635381in}}%\n\\pgfpathlineto{\\pgfqpoint{3.889786in}{0.584010in}}%\n\\pgfpathlineto{\\pgfqpoint{3.957970in}{0.546702in}}%\n\\pgfpathlineto{\\pgfqpoint{4.026154in}{0.524069in}}%\n\\pgfpathlineto{\\pgfqpoint{4.094338in}{0.516484in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.586272in}{0.424111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.586272in}{2.456314in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.424111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.456314in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.586272in}{0.424111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.424111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.586272in}{2.456314in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.456314in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.423830in,y=2.539647in,,base]{\\rmfamily\\fontsize{12.000000}{14.400000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.683495in}{1.957981in}}%\n\\pgfpathlineto{\\pgfqpoint{1.491272in}{1.957981in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.519050in}{1.957981in}}{\\pgfqpoint{1.519050in}{1.985759in}}%\n\\pgfpathlineto{\\pgfqpoint{1.519050in}{2.359092in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.519050in}{2.386870in}}{\\pgfqpoint{1.491272in}{2.386870in}}%\n\\pgfpathlineto{\\pgfqpoint{0.683495in}{2.386870in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.655717in}{2.386870in}}{\\pgfqpoint{0.655717in}{2.359092in}}%\n\\pgfpathlineto{\\pgfqpoint{0.655717in}{1.985759in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.655717in}{1.957981in}}{\\pgfqpoint{0.683495in}{1.957981in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.711272in}{2.282703in}}%\n\\pgfpathlineto{\\pgfqpoint{0.989050in}{2.282703in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.100161in,y=2.234092in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.711272in}{2.089092in}}%\n\\pgfpathlineto{\\pgfqpoint{0.989050in}{2.089092in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.100161in,y=2.040481in,left,base]{\\rmfamily\\fontsize{10.000000}{12.000000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_defaults.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.797672in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.797672in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.334203in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.334203in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.870735in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.870735in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.407267in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.943799in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.943799in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.480331in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.480331in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.016863in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.016863in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.098667in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.447600in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.409044in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.691385in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.652830in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.935170in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.896615in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.178956in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.140400in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.422741in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.384185in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.666526in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.627970in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.910311in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.871756in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.154096in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.115541in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.397882in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.359326in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.098667in,y=1.422490in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{2.144759in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{1.422741in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{1.298043in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{1.175392in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{1.056803in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.944222in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.839499in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{0.744352in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.660345in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.588856in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{0.531060in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{0.487905in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{0.460099in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{0.448101in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{0.452106in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{0.472049in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{0.507602in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{0.558182in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{0.622957in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{0.700865in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{0.790627in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{0.890767in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{0.999643in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{1.115466in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{1.236334in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{1.360263in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{1.485218in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{1.609147in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{1.730016in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{1.845839in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{1.954714in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{2.054855in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{2.144616in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{2.222524in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{2.287300in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{2.337880in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{2.373433in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{2.393376in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{2.397381in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{2.385382in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{2.357577in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{2.314422in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{2.256625in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{2.185137in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{2.101129in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{2.005983in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{1.901260in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{1.788679in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{1.670090in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{1.547439in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{1.422741in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{2.144759in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{0.447600in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{0.455606in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{0.479492in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{0.518866in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.573082in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.641250in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{0.722249in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.814750in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.917235in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{1.028020in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{1.145286in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{1.267108in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{1.391486in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{1.516377in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{1.639730in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{1.759520in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{1.873781in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{1.980635in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{2.078329in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{2.165258in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{2.239995in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{2.301312in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{2.348204in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{2.379899in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{2.395878in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{2.395878in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{2.379899in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{2.348204in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{2.301312in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{2.239995in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{2.165258in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{2.078329in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{1.980635in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{1.873781in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{1.759520in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{1.639730in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{1.516377in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{1.391486in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{1.267108in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{1.145286in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{1.028020in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{0.917235in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{0.814750in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{0.722249in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{0.641250in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{0.573082in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{0.518866in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{0.479492in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{0.455606in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{0.447600in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=2.578203in,,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.630924in}{2.096203in}}%\n\\pgfpathlineto{\\pgfqpoint{1.295257in}{2.096203in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{2.096203in}}{\\pgfqpoint{1.317479in}{2.118426in}}%\n\\pgfpathlineto{\\pgfqpoint{1.317479in}{2.417092in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{2.439314in}}{\\pgfqpoint{1.295257in}{2.439314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.630924in}{2.439314in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{2.439314in}}{\\pgfqpoint{0.608702in}{2.417092in}}%\n\\pgfpathlineto{\\pgfqpoint{0.608702in}{2.118426in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{2.096203in}}{\\pgfqpoint{0.630924in}{2.096203in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{2.355981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{2.355981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=2.317092in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{2.201092in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{2.201092in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=2.162203in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_defaults_no_partial.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.797672in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.797672in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.334203in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.334203in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.870735in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.870735in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.407267in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.943799in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.943799in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.480331in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.480331in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.016863in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.016863in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.098667in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.447600in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.409044in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.691385in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.652830in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.935170in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.896615in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.178956in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.140400in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.422741in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.384185in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.666526in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.627970in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.910311in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.871756in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.154096in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.115541in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.397882in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.359326in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.098667in,y=1.422490in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{2.144759in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{1.422741in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{1.298043in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{1.175392in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{1.056803in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.944222in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.839499in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{0.744352in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.660345in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.588856in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{0.531060in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{0.487905in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{0.460099in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{0.448101in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{0.452106in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{0.472049in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{0.507602in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{0.558182in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{0.622957in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{0.700865in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{0.790627in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{0.890767in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{0.999643in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{1.115466in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{1.236334in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{1.360263in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{1.485218in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{1.609147in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{1.730016in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{1.845839in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{1.954714in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{2.054855in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{2.144616in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{2.222524in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{2.287300in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{2.337880in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{2.373433in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{2.393376in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{2.397381in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{2.385382in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{2.357577in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{2.314422in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{2.256625in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{2.185137in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{2.101129in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{2.005983in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{1.901260in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{1.788679in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{1.670090in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{1.547439in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{1.422741in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{2.144759in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{0.447600in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{0.455606in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{0.479492in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{0.518866in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.573082in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.641250in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{0.722249in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.814750in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.917235in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{1.028020in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{1.145286in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{1.267108in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{1.391486in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{1.516377in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{1.639730in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{1.759520in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{1.873781in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{1.980635in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{2.078329in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{2.165258in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{2.239995in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{2.301312in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{2.348204in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{2.379899in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{2.395878in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{2.395878in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{2.379899in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{2.348204in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{2.301312in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{2.239995in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{2.165258in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{2.078329in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{1.980635in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{1.873781in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{1.759520in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{1.639730in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{1.516377in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{1.391486in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{1.267108in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{1.145286in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{1.028020in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{0.917235in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{0.814750in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{0.722249in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{0.641250in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{0.573082in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{0.518866in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{0.479492in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{0.455606in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{0.447600in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=2.578203in,,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.630924in}{2.096203in}}%\n\\pgfpathlineto{\\pgfqpoint{1.295257in}{2.096203in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{2.096203in}}{\\pgfqpoint{1.317479in}{2.118426in}}%\n\\pgfpathlineto{\\pgfqpoint{1.317479in}{2.417092in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{2.439314in}}{\\pgfqpoint{1.295257in}{2.439314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.630924in}{2.439314in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{2.439314in}}{\\pgfqpoint{0.608702in}{2.417092in}}%\n\\pgfpathlineto{\\pgfqpoint{0.608702in}{2.118426in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{2.096203in}}{\\pgfqpoint{0.630924in}{2.096203in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{2.355981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{2.355981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=2.317092in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{2.201092in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{2.201092in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=2.162203in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_no_latex.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage{fontspec}\n%%   \\setmainfont{DejaVu Serif}\n%%   \\setsansfont{DejaVu Sans}\n%%   \\setmonofont{DejaVu Sans Mono}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.868550in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.868550in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −3}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.394102in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.394102in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −2}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.919655in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.919655in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −1}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.445208in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.970761in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.970761in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 1}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.496314in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.496314in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 2}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.021867in}{0.442778in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.021867in,y=0.345556in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 3}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=0.155587in,,top]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{0.533196in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.194552in,y=0.480435in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −1.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{0.985404in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.194552in,y=0.932642in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont −0.5}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{1.437612in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=1.384850in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{1.889819in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=1.837058in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 0.5}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.629028in}{2.342027in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.310926in,y=2.289266in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont 1.0}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.138997in,y=1.437379in,,bottom,rotate=90.000000]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.629028in}{0.442778in}}{\\pgfqpoint{3.632361in}{1.989203in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.794135in}{1.437612in}}%\n\\pgfpathlineto{\\pgfqpoint{0.861526in}{1.321958in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928917in}{1.208202in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996307in}{1.098214in}}%\n\\pgfpathlineto{\\pgfqpoint{1.063698in}{0.993799in}}%\n\\pgfpathlineto{\\pgfqpoint{1.131089in}{0.896671in}}%\n\\pgfpathlineto{\\pgfqpoint{1.198480in}{0.808426in}}%\n\\pgfpathlineto{\\pgfqpoint{1.265870in}{0.730511in}}%\n\\pgfpathlineto{\\pgfqpoint{1.333261in}{0.664207in}}%\n\\pgfpathlineto{\\pgfqpoint{1.400652in}{0.610603in}}%\n\\pgfpathlineto{\\pgfqpoint{1.468042in}{0.570578in}}%\n\\pgfpathlineto{\\pgfqpoint{1.535433in}{0.544789in}}%\n\\pgfpathlineto{\\pgfqpoint{1.602824in}{0.533661in}}%\n\\pgfpathlineto{\\pgfqpoint{1.670215in}{0.537375in}}%\n\\pgfpathlineto{\\pgfqpoint{1.737605in}{0.555872in}}%\n\\pgfpathlineto{\\pgfqpoint{1.804996in}{0.588846in}}%\n\\pgfpathlineto{\\pgfqpoint{1.872387in}{0.635757in}}%\n\\pgfpathlineto{\\pgfqpoint{1.939778in}{0.695835in}}%\n\\pgfpathlineto{\\pgfqpoint{2.007168in}{0.768093in}}%\n\\pgfpathlineto{\\pgfqpoint{2.074559in}{0.851344in}}%\n\\pgfpathlineto{\\pgfqpoint{2.141950in}{0.944221in}}%\n\\pgfpathlineto{\\pgfqpoint{2.209341in}{1.045200in}}%\n\\pgfpathlineto{\\pgfqpoint{2.276731in}{1.152623in}}%\n\\pgfpathlineto{\\pgfqpoint{2.344122in}{1.264725in}}%\n\\pgfpathlineto{\\pgfqpoint{2.411513in}{1.379666in}}%\n\\pgfpathlineto{\\pgfqpoint{2.478904in}{1.495558in}}%\n\\pgfpathlineto{\\pgfqpoint{2.546294in}{1.610498in}}%\n\\pgfpathlineto{\\pgfqpoint{2.613685in}{1.722600in}}%\n\\pgfpathlineto{\\pgfqpoint{2.681076in}{1.830023in}}%\n\\pgfpathlineto{\\pgfqpoint{2.748466in}{1.931002in}}%\n\\pgfpathlineto{\\pgfqpoint{2.815857in}{2.023879in}}%\n\\pgfpathlineto{\\pgfqpoint{2.883248in}{2.107131in}}%\n\\pgfpathlineto{\\pgfqpoint{2.950639in}{2.179388in}}%\n\\pgfpathlineto{\\pgfqpoint{3.018029in}{2.239466in}}%\n\\pgfpathlineto{\\pgfqpoint{3.085420in}{2.286377in}}%\n\\pgfpathlineto{\\pgfqpoint{3.152811in}{2.319352in}}%\n\\pgfpathlineto{\\pgfqpoint{3.220202in}{2.337848in}}%\n\\pgfpathlineto{\\pgfqpoint{3.287592in}{2.341562in}}%\n\\pgfpathlineto{\\pgfqpoint{3.354983in}{2.330434in}}%\n\\pgfpathlineto{\\pgfqpoint{3.422374in}{2.304646in}}%\n\\pgfpathlineto{\\pgfqpoint{3.489765in}{2.264621in}}%\n\\pgfpathlineto{\\pgfqpoint{3.557155in}{2.211016in}}%\n\\pgfpathlineto{\\pgfqpoint{3.624546in}{2.144712in}}%\n\\pgfpathlineto{\\pgfqpoint{3.691937in}{2.066798in}}%\n\\pgfpathlineto{\\pgfqpoint{3.759328in}{1.978552in}}%\n\\pgfpathlineto{\\pgfqpoint{3.826718in}{1.881424in}}%\n\\pgfpathlineto{\\pgfqpoint{3.894109in}{1.777009in}}%\n\\pgfpathlineto{\\pgfqpoint{3.961500in}{1.667021in}}%\n\\pgfpathlineto{\\pgfqpoint{4.028890in}{1.553266in}}%\n\\pgfpathlineto{\\pgfqpoint{4.096281in}{1.437612in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.629028in}{0.442778in}}{\\pgfqpoint{3.632361in}{1.989203in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.794135in}{0.533196in}}%\n\\pgfpathlineto{\\pgfqpoint{0.861526in}{0.540621in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928917in}{0.562775in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996307in}{0.599294in}}%\n\\pgfpathlineto{\\pgfqpoint{1.063698in}{0.649577in}}%\n\\pgfpathlineto{\\pgfqpoint{1.131089in}{0.712801in}}%\n\\pgfpathlineto{\\pgfqpoint{1.198480in}{0.787925in}}%\n\\pgfpathlineto{\\pgfqpoint{1.265870in}{0.873718in}}%\n\\pgfpathlineto{\\pgfqpoint{1.333261in}{0.968769in}}%\n\\pgfpathlineto{\\pgfqpoint{1.400652in}{1.071519in}}%\n\\pgfpathlineto{\\pgfqpoint{1.468042in}{1.180280in}}%\n\\pgfpathlineto{\\pgfqpoint{1.535433in}{1.293267in}}%\n\\pgfpathlineto{\\pgfqpoint{1.602824in}{1.408624in}}%\n\\pgfpathlineto{\\pgfqpoint{1.670215in}{1.524456in}}%\n\\pgfpathlineto{\\pgfqpoint{1.737605in}{1.638863in}}%\n\\pgfpathlineto{\\pgfqpoint{1.804996in}{1.749965in}}%\n\\pgfpathlineto{\\pgfqpoint{1.872387in}{1.855938in}}%\n\\pgfpathlineto{\\pgfqpoint{1.939778in}{1.955043in}}%\n\\pgfpathlineto{\\pgfqpoint{2.007168in}{2.045651in}}%\n\\pgfpathlineto{\\pgfqpoint{2.074559in}{2.126275in}}%\n\\pgfpathlineto{\\pgfqpoint{2.141950in}{2.195592in}}%\n\\pgfpathlineto{\\pgfqpoint{2.209341in}{2.252462in}}%\n\\pgfpathlineto{\\pgfqpoint{2.276731in}{2.295952in}}%\n\\pgfpathlineto{\\pgfqpoint{2.344122in}{2.325349in}}%\n\\pgfpathlineto{\\pgfqpoint{2.411513in}{2.340169in}}%\n\\pgfpathlineto{\\pgfqpoint{2.478904in}{2.340169in}}%\n\\pgfpathlineto{\\pgfqpoint{2.546294in}{2.325349in}}%\n\\pgfpathlineto{\\pgfqpoint{2.613685in}{2.295952in}}%\n\\pgfpathlineto{\\pgfqpoint{2.681076in}{2.252462in}}%\n\\pgfpathlineto{\\pgfqpoint{2.748466in}{2.195592in}}%\n\\pgfpathlineto{\\pgfqpoint{2.815857in}{2.126275in}}%\n\\pgfpathlineto{\\pgfqpoint{2.883248in}{2.045651in}}%\n\\pgfpathlineto{\\pgfqpoint{2.950639in}{1.955043in}}%\n\\pgfpathlineto{\\pgfqpoint{3.018029in}{1.855938in}}%\n\\pgfpathlineto{\\pgfqpoint{3.085420in}{1.749965in}}%\n\\pgfpathlineto{\\pgfqpoint{3.152811in}{1.638863in}}%\n\\pgfpathlineto{\\pgfqpoint{3.220202in}{1.524456in}}%\n\\pgfpathlineto{\\pgfqpoint{3.287592in}{1.408624in}}%\n\\pgfpathlineto{\\pgfqpoint{3.354983in}{1.293267in}}%\n\\pgfpathlineto{\\pgfqpoint{3.422374in}{1.180280in}}%\n\\pgfpathlineto{\\pgfqpoint{3.489765in}{1.071519in}}%\n\\pgfpathlineto{\\pgfqpoint{3.557155in}{0.968769in}}%\n\\pgfpathlineto{\\pgfqpoint{3.624546in}{0.873718in}}%\n\\pgfpathlineto{\\pgfqpoint{3.691937in}{0.787925in}}%\n\\pgfpathlineto{\\pgfqpoint{3.759328in}{0.712801in}}%\n\\pgfpathlineto{\\pgfqpoint{3.826718in}{0.649577in}}%\n\\pgfpathlineto{\\pgfqpoint{3.894109in}{0.599294in}}%\n\\pgfpathlineto{\\pgfqpoint{3.961500in}{0.562775in}}%\n\\pgfpathlineto{\\pgfqpoint{4.028890in}{0.540621in}}%\n\\pgfpathlineto{\\pgfqpoint{4.096281in}{0.533196in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{0.442778in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.442778in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.629028in}{2.431981in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.431981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.445208in,y=2.515314in,,base]{\\sffamily\\fontsize{12.000000}{14.400000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.726250in}{1.913155in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616455in}{1.913155in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.644232in}{1.913155in}}{\\pgfqpoint{1.644232in}{1.940933in}}%\n\\pgfpathlineto{\\pgfqpoint{1.644232in}{2.334759in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.644232in}{2.362536in}}{\\pgfqpoint{1.616455in}{2.362536in}}%\n\\pgfpathlineto{\\pgfqpoint{0.726250in}{2.362536in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.698472in}{2.362536in}}{\\pgfqpoint{0.698472in}{2.334759in}}%\n\\pgfpathlineto{\\pgfqpoint{0.698472in}{1.940933in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.698472in}{1.913155in}}{\\pgfqpoint{0.726250in}{1.913155in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.754028in}{2.250069in}}%\n\\pgfpathlineto{\\pgfqpoint{1.031806in}{2.250069in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.142917in,y=2.201458in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.754028in}{2.046212in}}%\n\\pgfpathlineto{\\pgfqpoint{1.031806in}{2.046212in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.142917in,y=1.997601in,left,base]{\\sffamily\\fontsize{10.000000}{12.000000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_small.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{2.148194in}{1.327657in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{2.148194in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{2.148194in}{1.327657in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{1.327657in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.402295in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{2.113194in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{2.113194in}{1.167213in}}%\n\\pgfpathlineto{\\pgfqpoint{0.402295in}{1.167213in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.762657in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.762657in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.257745in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.257745in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.752832in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.752832in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.257745in,y=0.098667in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.402295in}{0.387252in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.348696in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.402295in}{0.758757in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=0.720202in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.402295in}{1.130263in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.091707in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.098667in,y=0.758662in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.402295in}{0.350111in}}{\\pgfqpoint{1.710899in}{0.817102in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.480063in}{0.758757in}}%\n\\pgfpathlineto{\\pgfqpoint{0.511806in}{0.711250in}}%\n\\pgfpathlineto{\\pgfqpoint{0.543548in}{0.664523in}}%\n\\pgfpathlineto{\\pgfqpoint{0.575290in}{0.619343in}}%\n\\pgfpathlineto{\\pgfqpoint{0.607032in}{0.576453in}}%\n\\pgfpathlineto{\\pgfqpoint{0.638774in}{0.536556in}}%\n\\pgfpathlineto{\\pgfqpoint{0.670516in}{0.500307in}}%\n\\pgfpathlineto{\\pgfqpoint{0.702258in}{0.468303in}}%\n\\pgfpathlineto{\\pgfqpoint{0.734000in}{0.441067in}}%\n\\pgfpathlineto{\\pgfqpoint{0.765742in}{0.419048in}}%\n\\pgfpathlineto{\\pgfqpoint{0.797484in}{0.402607in}}%\n\\pgfpathlineto{\\pgfqpoint{0.829226in}{0.392014in}}%\n\\pgfpathlineto{\\pgfqpoint{0.860969in}{0.387443in}}%\n\\pgfpathlineto{\\pgfqpoint{0.892711in}{0.388969in}}%\n\\pgfpathlineto{\\pgfqpoint{0.924453in}{0.396566in}}%\n\\pgfpathlineto{\\pgfqpoint{0.956195in}{0.410111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.987937in}{0.429381in}}%\n\\pgfpathlineto{\\pgfqpoint{1.019679in}{0.454059in}}%\n\\pgfpathlineto{\\pgfqpoint{1.051421in}{0.483740in}}%\n\\pgfpathlineto{\\pgfqpoint{1.083163in}{0.517937in}}%\n\\pgfpathlineto{\\pgfqpoint{1.114905in}{0.556088in}}%\n\\pgfpathlineto{\\pgfqpoint{1.146647in}{0.597567in}}%\n\\pgfpathlineto{\\pgfqpoint{1.178390in}{0.641693in}}%\n\\pgfpathlineto{\\pgfqpoint{1.210132in}{0.687741in}}%\n\\pgfpathlineto{\\pgfqpoint{1.241874in}{0.734955in}}%\n\\pgfpathlineto{\\pgfqpoint{1.273616in}{0.782560in}}%\n\\pgfpathlineto{\\pgfqpoint{1.305358in}{0.829774in}}%\n\\pgfpathlineto{\\pgfqpoint{1.337100in}{0.875822in}}%\n\\pgfpathlineto{\\pgfqpoint{1.368842in}{0.919947in}}%\n\\pgfpathlineto{\\pgfqpoint{1.400584in}{0.961426in}}%\n\\pgfpathlineto{\\pgfqpoint{1.432326in}{0.999577in}}%\n\\pgfpathlineto{\\pgfqpoint{1.464068in}{1.033774in}}%\n\\pgfpathlineto{\\pgfqpoint{1.495810in}{1.063456in}}%\n\\pgfpathlineto{\\pgfqpoint{1.527553in}{1.088134in}}%\n\\pgfpathlineto{\\pgfqpoint{1.559295in}{1.107403in}}%\n\\pgfpathlineto{\\pgfqpoint{1.591037in}{1.120948in}}%\n\\pgfpathlineto{\\pgfqpoint{1.622779in}{1.128546in}}%\n\\pgfpathlineto{\\pgfqpoint{1.654521in}{1.130072in}}%\n\\pgfpathlineto{\\pgfqpoint{1.686263in}{1.125500in}}%\n\\pgfpathlineto{\\pgfqpoint{1.718005in}{1.114907in}}%\n\\pgfpathlineto{\\pgfqpoint{1.749747in}{1.098466in}}%\n\\pgfpathlineto{\\pgfqpoint{1.781489in}{1.076447in}}%\n\\pgfpathlineto{\\pgfqpoint{1.813231in}{1.049212in}}%\n\\pgfpathlineto{\\pgfqpoint{1.844974in}{1.017207in}}%\n\\pgfpathlineto{\\pgfqpoint{1.876716in}{0.980958in}}%\n\\pgfpathlineto{\\pgfqpoint{1.908458in}{0.941061in}}%\n\\pgfpathlineto{\\pgfqpoint{1.940200in}{0.898171in}}%\n\\pgfpathlineto{\\pgfqpoint{1.971942in}{0.852991in}}%\n\\pgfpathlineto{\\pgfqpoint{2.003684in}{0.806264in}}%\n\\pgfpathlineto{\\pgfqpoint{2.035426in}{0.758757in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.402295in}{0.350111in}}{\\pgfqpoint{1.710899in}{0.817102in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.480063in}{0.387252in}}%\n\\pgfpathlineto{\\pgfqpoint{0.511806in}{0.390302in}}%\n\\pgfpathlineto{\\pgfqpoint{0.543548in}{0.399402in}}%\n\\pgfpathlineto{\\pgfqpoint{0.575290in}{0.414403in}}%\n\\pgfpathlineto{\\pgfqpoint{0.607032in}{0.435058in}}%\n\\pgfpathlineto{\\pgfqpoint{0.638774in}{0.461028in}}%\n\\pgfpathlineto{\\pgfqpoint{0.670516in}{0.491887in}}%\n\\pgfpathlineto{\\pgfqpoint{0.702258in}{0.527127in}}%\n\\pgfpathlineto{\\pgfqpoint{0.734000in}{0.566172in}}%\n\\pgfpathlineto{\\pgfqpoint{0.765742in}{0.608378in}}%\n\\pgfpathlineto{\\pgfqpoint{0.797484in}{0.653054in}}%\n\\pgfpathlineto{\\pgfqpoint{0.829226in}{0.699465in}}%\n\\pgfpathlineto{\\pgfqpoint{0.860969in}{0.746850in}}%\n\\pgfpathlineto{\\pgfqpoint{0.892711in}{0.794430in}}%\n\\pgfpathlineto{\\pgfqpoint{0.924453in}{0.841425in}}%\n\\pgfpathlineto{\\pgfqpoint{0.956195in}{0.887062in}}%\n\\pgfpathlineto{\\pgfqpoint{0.987937in}{0.930593in}}%\n\\pgfpathlineto{\\pgfqpoint{1.019679in}{0.971302in}}%\n\\pgfpathlineto{\\pgfqpoint{1.051421in}{1.008521in}}%\n\\pgfpathlineto{\\pgfqpoint{1.083163in}{1.041638in}}%\n\\pgfpathlineto{\\pgfqpoint{1.114905in}{1.070111in}}%\n\\pgfpathlineto{\\pgfqpoint{1.146647in}{1.093472in}}%\n\\pgfpathlineto{\\pgfqpoint{1.178390in}{1.111336in}}%\n\\pgfpathlineto{\\pgfqpoint{1.210132in}{1.123412in}}%\n\\pgfpathlineto{\\pgfqpoint{1.241874in}{1.129499in}}%\n\\pgfpathlineto{\\pgfqpoint{1.273616in}{1.129499in}}%\n\\pgfpathlineto{\\pgfqpoint{1.305358in}{1.123412in}}%\n\\pgfpathlineto{\\pgfqpoint{1.337100in}{1.111336in}}%\n\\pgfpathlineto{\\pgfqpoint{1.368842in}{1.093472in}}%\n\\pgfpathlineto{\\pgfqpoint{1.400584in}{1.070111in}}%\n\\pgfpathlineto{\\pgfqpoint{1.432326in}{1.041638in}}%\n\\pgfpathlineto{\\pgfqpoint{1.464068in}{1.008521in}}%\n\\pgfpathlineto{\\pgfqpoint{1.495810in}{0.971302in}}%\n\\pgfpathlineto{\\pgfqpoint{1.527553in}{0.930593in}}%\n\\pgfpathlineto{\\pgfqpoint{1.559295in}{0.887062in}}%\n\\pgfpathlineto{\\pgfqpoint{1.591037in}{0.841425in}}%\n\\pgfpathlineto{\\pgfqpoint{1.622779in}{0.794430in}}%\n\\pgfpathlineto{\\pgfqpoint{1.654521in}{0.746850in}}%\n\\pgfpathlineto{\\pgfqpoint{1.686263in}{0.699465in}}%\n\\pgfpathlineto{\\pgfqpoint{1.718005in}{0.653054in}}%\n\\pgfpathlineto{\\pgfqpoint{1.749747in}{0.608378in}}%\n\\pgfpathlineto{\\pgfqpoint{1.781489in}{0.566172in}}%\n\\pgfpathlineto{\\pgfqpoint{1.813231in}{0.527127in}}%\n\\pgfpathlineto{\\pgfqpoint{1.844974in}{0.491887in}}%\n\\pgfpathlineto{\\pgfqpoint{1.876716in}{0.461028in}}%\n\\pgfpathlineto{\\pgfqpoint{1.908458in}{0.435058in}}%\n\\pgfpathlineto{\\pgfqpoint{1.940200in}{0.414403in}}%\n\\pgfpathlineto{\\pgfqpoint{1.971942in}{0.399402in}}%\n\\pgfpathlineto{\\pgfqpoint{2.003684in}{0.390302in}}%\n\\pgfpathlineto{\\pgfqpoint{2.035426in}{0.387252in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.402295in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.402295in}{1.167213in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{2.113194in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{2.113194in}{1.167213in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.402295in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{2.113194in}{0.350111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.402295in}{1.167213in}}%\n\\pgfpathlineto{\\pgfqpoint{2.113194in}{1.167213in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.257745in,y=1.250546in,,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.480073in}{0.768546in}}%\n\\pgfpathlineto{\\pgfqpoint{1.144406in}{0.768546in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.166629in}{0.768546in}}{\\pgfqpoint{1.166629in}{0.790768in}}%\n\\pgfpathlineto{\\pgfqpoint{1.166629in}{1.089435in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.166629in}{1.111657in}}{\\pgfqpoint{1.144406in}{1.111657in}}%\n\\pgfpathlineto{\\pgfqpoint{0.480073in}{1.111657in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.457851in}{1.111657in}}{\\pgfqpoint{0.457851in}{1.089435in}}%\n\\pgfpathlineto{\\pgfqpoint{0.457851in}{0.790768in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.457851in}{0.768546in}}{\\pgfqpoint{0.480073in}{0.768546in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.502295in}{1.028324in}}%\n\\pgfpathlineto{\\pgfqpoint{0.724517in}{1.028324in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.813406in,y=0.989435in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.502295in}{0.873435in}}%\n\\pgfpathlineto{\\pgfqpoint{0.724517in}{0.873435in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.813406in,y=0.834546in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_square.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{4.296389in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{4.296389in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{4.296389in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{4.135944in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{4.135944in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.797672in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.797672in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.334203in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.334203in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.870735in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.870735in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.407267in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.943799in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.943799in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.480331in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.480331in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.016863in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.016863in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.098667in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.522194in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.483639in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.952513in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.913957in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.382832in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.344276in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.813151in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.774595in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.243470in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.204914in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.673789in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.635233in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{3.104107in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=3.065552in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{3.534426in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=3.495871in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{3.964745in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=3.926190in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.098667in,y=2.243027in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{3.785833in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{2.243470in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{2.023358in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{1.806860in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{1.597532in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{1.398810in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{1.213957in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{1.046008in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.897722in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.771533in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{0.669514in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{0.593338in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{0.544258in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{0.523079in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{0.530148in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{0.565350in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{0.628107in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{0.717388in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{0.831727in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{0.969247in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{1.127690in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{1.304454in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{1.496636in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{1.701082in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{1.914433in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{2.133187in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{2.353752in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{2.572506in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{2.785858in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{2.990303in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{3.182485in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{3.359249in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{3.517692in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{3.655212in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{3.769551in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{3.858832in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{3.921589in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{3.956791in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{3.963861in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{3.942681in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{3.893601in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{3.817426in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{3.715406in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{3.589217in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{3.440931in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{3.272983in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{3.088130in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{2.889408in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{2.680079in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{2.463581in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{2.243470in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{3.785833in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{0.522194in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{0.536326in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{0.578489in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{0.647991in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.743690in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.864016in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{1.006993in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{1.170272in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{1.351173in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{1.546726in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{1.753719in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{1.968754in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{2.188300in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{2.408752in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{2.626489in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{2.837938in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{3.039625in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{3.228240in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{3.400685in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{3.554128in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{3.686050in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{3.794285in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{3.877056in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{3.933003in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{3.961209in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{3.961209in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{3.933003in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{3.877056in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{3.794285in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{3.686050in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{3.554128in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{3.400685in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{3.228240in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{3.039625in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{2.837938in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{2.626489in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{2.408752in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{2.188300in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{1.968754in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{1.753719in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{1.546726in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{1.351173in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{1.170272in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{1.006993in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{0.864016in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{0.743690in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{0.647991in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{0.578489in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{0.536326in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{0.522194in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{4.135944in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{4.135944in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{4.135944in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{4.135944in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=4.219277in,,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.630924in}{3.737278in}}%\n\\pgfpathlineto{\\pgfqpoint{1.295257in}{3.737278in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{3.737278in}}{\\pgfqpoint{1.317479in}{3.759500in}}%\n\\pgfpathlineto{\\pgfqpoint{1.317479in}{4.058166in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{4.080389in}}{\\pgfqpoint{1.295257in}{4.080389in}}%\n\\pgfpathlineto{\\pgfqpoint{0.630924in}{4.080389in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{4.080389in}}{\\pgfqpoint{0.608702in}{4.058166in}}%\n\\pgfpathlineto{\\pgfqpoint{0.608702in}{3.759500in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{3.737278in}}{\\pgfqpoint{0.630924in}{3.737278in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{3.997055in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{3.997055in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=3.958166in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{3.842166in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{3.842166in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=3.803278in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_tall.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{2.864259in}{5.728518in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{2.864259in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{2.864259in}{5.728518in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{5.728518in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{2.829259in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{2.829259in}{5.568074in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{5.568074in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.032558in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.032558in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.691203in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.691203in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.349847in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.349847in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.691203in,y=0.098667in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.587291in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.548735in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.180394in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.141838in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.773496in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.734941in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.366599in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=2.328043in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.959702in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.921146in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{3.552804in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=3.514249in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{4.145907in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=4.107351in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{4.739010in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=4.700454in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{5.332112in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=5.293557in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.098667in,y=2.959092in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{2.276113in}{5.217963in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.656606in}{2.959702in}}%\n\\pgfpathlineto{\\pgfqpoint{0.698834in}{2.656325in}}%\n\\pgfpathlineto{\\pgfqpoint{0.741063in}{2.357929in}}%\n\\pgfpathlineto{\\pgfqpoint{0.783291in}{2.069414in}}%\n\\pgfpathlineto{\\pgfqpoint{0.825520in}{1.795518in}}%\n\\pgfpathlineto{\\pgfqpoint{0.867748in}{1.540738in}}%\n\\pgfpathlineto{\\pgfqpoint{0.909976in}{1.309257in}}%\n\\pgfpathlineto{\\pgfqpoint{0.952205in}{1.104876in}}%\n\\pgfpathlineto{\\pgfqpoint{0.994433in}{0.930952in}}%\n\\pgfpathlineto{\\pgfqpoint{1.036662in}{0.790339in}}%\n\\pgfpathlineto{\\pgfqpoint{1.078890in}{0.685348in}}%\n\\pgfpathlineto{\\pgfqpoint{1.121119in}{0.617701in}}%\n\\pgfpathlineto{\\pgfqpoint{1.163347in}{0.588510in}}%\n\\pgfpathlineto{\\pgfqpoint{1.205576in}{0.598254in}}%\n\\pgfpathlineto{\\pgfqpoint{1.247804in}{0.646772in}}%\n\\pgfpathlineto{\\pgfqpoint{1.290032in}{0.733269in}}%\n\\pgfpathlineto{\\pgfqpoint{1.332261in}{0.856324in}}%\n\\pgfpathlineto{\\pgfqpoint{1.374489in}{1.013916in}}%\n\\pgfpathlineto{\\pgfqpoint{1.416718in}{1.203458in}}%\n\\pgfpathlineto{\\pgfqpoint{1.458946in}{1.421838in}}%\n\\pgfpathlineto{\\pgfqpoint{1.501175in}{1.665469in}}%\n\\pgfpathlineto{\\pgfqpoint{1.543403in}{1.930351in}}%\n\\pgfpathlineto{\\pgfqpoint{1.585631in}{2.212136in}}%\n\\pgfpathlineto{\\pgfqpoint{1.627860in}{2.506195in}}%\n\\pgfpathlineto{\\pgfqpoint{1.670088in}{2.807701in}}%\n\\pgfpathlineto{\\pgfqpoint{1.712317in}{3.111703in}}%\n\\pgfpathlineto{\\pgfqpoint{1.754545in}{3.413208in}}%\n\\pgfpathlineto{\\pgfqpoint{1.796774in}{3.707268in}}%\n\\pgfpathlineto{\\pgfqpoint{1.839002in}{3.989052in}}%\n\\pgfpathlineto{\\pgfqpoint{1.881231in}{4.253935in}}%\n\\pgfpathlineto{\\pgfqpoint{1.923459in}{4.497566in}}%\n\\pgfpathlineto{\\pgfqpoint{1.965687in}{4.715945in}}%\n\\pgfpathlineto{\\pgfqpoint{2.007916in}{4.905487in}}%\n\\pgfpathlineto{\\pgfqpoint{2.050144in}{5.063079in}}%\n\\pgfpathlineto{\\pgfqpoint{2.092373in}{5.186134in}}%\n\\pgfpathlineto{\\pgfqpoint{2.134601in}{5.272631in}}%\n\\pgfpathlineto{\\pgfqpoint{2.176830in}{5.321150in}}%\n\\pgfpathlineto{\\pgfqpoint{2.219058in}{5.330893in}}%\n\\pgfpathlineto{\\pgfqpoint{2.261287in}{5.301702in}}%\n\\pgfpathlineto{\\pgfqpoint{2.303515in}{5.234056in}}%\n\\pgfpathlineto{\\pgfqpoint{2.345743in}{5.129064in}}%\n\\pgfpathlineto{\\pgfqpoint{2.387972in}{4.988452in}}%\n\\pgfpathlineto{\\pgfqpoint{2.430200in}{4.814527in}}%\n\\pgfpathlineto{\\pgfqpoint{2.472429in}{4.610146in}}%\n\\pgfpathlineto{\\pgfqpoint{2.514657in}{4.378666in}}%\n\\pgfpathlineto{\\pgfqpoint{2.556886in}{4.123885in}}%\n\\pgfpathlineto{\\pgfqpoint{2.599114in}{3.849989in}}%\n\\pgfpathlineto{\\pgfqpoint{2.641342in}{3.561475in}}%\n\\pgfpathlineto{\\pgfqpoint{2.683571in}{3.263079in}}%\n\\pgfpathlineto{\\pgfqpoint{2.725799in}{2.959702in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{2.276113in}{5.217963in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.656606in}{0.587291in}}%\n\\pgfpathlineto{\\pgfqpoint{0.698834in}{0.606768in}}%\n\\pgfpathlineto{\\pgfqpoint{0.741063in}{0.664881in}}%\n\\pgfpathlineto{\\pgfqpoint{0.783291in}{0.760674in}}%\n\\pgfpathlineto{\\pgfqpoint{0.825520in}{0.892576in}}%\n\\pgfpathlineto{\\pgfqpoint{0.867748in}{1.058419in}}%\n\\pgfpathlineto{\\pgfqpoint{0.909976in}{1.255482in}}%\n\\pgfpathlineto{\\pgfqpoint{0.952205in}{1.480528in}}%\n\\pgfpathlineto{\\pgfqpoint{0.994433in}{1.729862in}}%\n\\pgfpathlineto{\\pgfqpoint{1.036662in}{1.999389in}}%\n\\pgfpathlineto{\\pgfqpoint{1.078890in}{2.284685in}}%\n\\pgfpathlineto{\\pgfqpoint{1.121119in}{2.581065in}}%\n\\pgfpathlineto{\\pgfqpoint{1.163347in}{2.883662in}}%\n\\pgfpathlineto{\\pgfqpoint{1.205576in}{3.187508in}}%\n\\pgfpathlineto{\\pgfqpoint{1.247804in}{3.487613in}}%\n\\pgfpathlineto{\\pgfqpoint{1.290032in}{3.779049in}}%\n\\pgfpathlineto{\\pgfqpoint{1.332261in}{4.057032in}}%\n\\pgfpathlineto{\\pgfqpoint{1.374489in}{4.316997in}}%\n\\pgfpathlineto{\\pgfqpoint{1.416718in}{4.554676in}}%\n\\pgfpathlineto{\\pgfqpoint{1.458946in}{4.766164in}}%\n\\pgfpathlineto{\\pgfqpoint{1.501175in}{4.947991in}}%\n\\pgfpathlineto{\\pgfqpoint{1.543403in}{5.097170in}}%\n\\pgfpathlineto{\\pgfqpoint{1.585631in}{5.211252in}}%\n\\pgfpathlineto{\\pgfqpoint{1.627860in}{5.288363in}}%\n\\pgfpathlineto{\\pgfqpoint{1.670088in}{5.327238in}}%\n\\pgfpathlineto{\\pgfqpoint{1.712317in}{5.327238in}}%\n\\pgfpathlineto{\\pgfqpoint{1.754545in}{5.288363in}}%\n\\pgfpathlineto{\\pgfqpoint{1.796774in}{5.211252in}}%\n\\pgfpathlineto{\\pgfqpoint{1.839002in}{5.097170in}}%\n\\pgfpathlineto{\\pgfqpoint{1.881231in}{4.947991in}}%\n\\pgfpathlineto{\\pgfqpoint{1.923459in}{4.766164in}}%\n\\pgfpathlineto{\\pgfqpoint{1.965687in}{4.554676in}}%\n\\pgfpathlineto{\\pgfqpoint{2.007916in}{4.316997in}}%\n\\pgfpathlineto{\\pgfqpoint{2.050144in}{4.057032in}}%\n\\pgfpathlineto{\\pgfqpoint{2.092373in}{3.779049in}}%\n\\pgfpathlineto{\\pgfqpoint{2.134601in}{3.487613in}}%\n\\pgfpathlineto{\\pgfqpoint{2.176830in}{3.187508in}}%\n\\pgfpathlineto{\\pgfqpoint{2.219058in}{2.883662in}}%\n\\pgfpathlineto{\\pgfqpoint{2.261287in}{2.581065in}}%\n\\pgfpathlineto{\\pgfqpoint{2.303515in}{2.284685in}}%\n\\pgfpathlineto{\\pgfqpoint{2.345743in}{1.999389in}}%\n\\pgfpathlineto{\\pgfqpoint{2.387972in}{1.729862in}}%\n\\pgfpathlineto{\\pgfqpoint{2.430200in}{1.480528in}}%\n\\pgfpathlineto{\\pgfqpoint{2.472429in}{1.255482in}}%\n\\pgfpathlineto{\\pgfqpoint{2.514657in}{1.058419in}}%\n\\pgfpathlineto{\\pgfqpoint{2.556886in}{0.892576in}}%\n\\pgfpathlineto{\\pgfqpoint{2.599114in}{0.760674in}}%\n\\pgfpathlineto{\\pgfqpoint{2.641342in}{0.664881in}}%\n\\pgfpathlineto{\\pgfqpoint{2.683571in}{0.606768in}}%\n\\pgfpathlineto{\\pgfqpoint{2.725799in}{0.587291in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{5.568074in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{2.829259in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{2.829259in}{5.568074in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{2.829259in}{0.350111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{5.568074in}}%\n\\pgfpathlineto{\\pgfqpoint{2.829259in}{5.568074in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.691203in,y=5.651407in,,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.630924in}{5.169407in}}%\n\\pgfpathlineto{\\pgfqpoint{1.295257in}{5.169407in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{5.169407in}}{\\pgfqpoint{1.317479in}{5.191629in}}%\n\\pgfpathlineto{\\pgfqpoint{1.317479in}{5.490296in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{5.512518in}}{\\pgfqpoint{1.295257in}{5.512518in}}%\n\\pgfpathlineto{\\pgfqpoint{0.630924in}{5.512518in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{5.512518in}}{\\pgfqpoint{0.608702in}{5.490296in}}%\n\\pgfpathlineto{\\pgfqpoint{0.608702in}{5.191629in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{5.169407in}}{\\pgfqpoint{0.630924in}{5.169407in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{5.429185in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{5.429185in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=5.390296in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{5.274296in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{5.274296in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=5.235407in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "examples/img/sincos_with_latex.pgf",
    "content": "%% Creator: Matplotlib, PGF backend\n%%\n%% To include the figure in your LaTeX document, write\n%%   \\input{<filename>.pgf}\n%%\n%% Make sure the required packages are loaded in your preamble\n%%   \\usepackage{pgf}\n%%\n%% Figures using additional raster images can only be included by \\input if\n%% they are in the same directory as the main LaTeX file. For loading figures\n%% from other directories you can use the `import` package\n%%   \\usepackage{import}\n%% and then include the figures with\n%%   \\import{<path to file>}{<filename>.pgf}\n%%\n%% Matplotlib used the following preamble\n%%   \\usepackage[utf8x]{inputenc}\n%%   \\usepackage[T1]{fontenc}\n%%   \\usepackage{fontspec}\n%%\n\\begingroup%\n\\makeatletter%\n\\begin{pgfpicture}%\n\\pgfpathrectangle{\\pgfpointorigin}{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfusepath{use as bounding box, clip}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{4.296389in}{2.655314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{2.655314in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.000000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.000000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathclose%\n\\pgfusepath{fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.797672in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.797672in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.334203in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.334203in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{1.870735in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=1.870735in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.407267in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{2.943799in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.943799in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{3.480331in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=3.480331in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 2\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{0.000000in}{-0.048611in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{0.000000in}{-0.048611in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{4.016863in}{0.350111in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=4.016863in,y=0.252889in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 3\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=0.098667in,,top]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle \\theta\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.447600in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.409044in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.691385in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.652830in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{0.935170in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=0.896615in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.178956in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.154222in,y=1.140400in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle -0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.422741in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.384185in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.666526in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.627970in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.25\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{1.910311in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=1.871756in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.50\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.154096in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.115541in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 0.75\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetroundjoin%\n\\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfsys@defobject{currentmarker}{\\pgfqpoint{-0.048611in}{0.000000in}}{\\pgfqpoint{0.000000in}{0.000000in}}{%\n\\pgfpathmoveto{\\pgfqpoint{0.000000in}{0.000000in}}%\n\\pgfpathlineto{\\pgfqpoint{-0.048611in}{0.000000in}}%\n\\pgfusepath{stroke,fill}%\n}%\n\\begin{pgfscope}%\n\\pgfsys@transformshift{0.553146in}{2.397882in}%\n\\pgfsys@useobject{currentmarker}{}%\n\\end{pgfscope}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.246044in,y=2.359326in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont \\(\\displaystyle 1.00\\)}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.098667in,y=1.422490in,,bottom,rotate=90.000000]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Value}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{2.144759in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{1.422741in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{1.298043in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{1.175392in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{1.056803in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.944222in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.839499in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{0.744352in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.660345in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.588856in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{0.531060in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{0.487905in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{0.460099in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{0.448101in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{0.452106in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{0.472049in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{0.507602in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{0.558182in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{0.622957in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{0.700865in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{0.790627in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{0.890767in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{0.999643in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{1.115466in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{1.236334in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{1.360263in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{1.485218in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{1.609147in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{1.730016in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{1.845839in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{1.954714in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{2.054855in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{2.144616in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{2.222524in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{2.287300in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{2.337880in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{2.373433in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{2.393376in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{2.397381in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{2.385382in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{2.357577in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{2.314422in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{2.256625in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{2.185137in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{2.101129in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{2.005983in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{1.901260in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{1.788679in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{1.670090in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{1.547439in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{1.422741in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfpathrectangle{\\pgfqpoint{0.553146in}{0.350111in}}{\\pgfqpoint{3.708242in}{2.144759in}} %\n\\pgfusepath{clip}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.721703in}{0.447600in}}%\n\\pgfpathlineto{\\pgfqpoint{0.790501in}{0.455606in}}%\n\\pgfpathlineto{\\pgfqpoint{0.859300in}{0.479492in}}%\n\\pgfpathlineto{\\pgfqpoint{0.928098in}{0.518866in}}%\n\\pgfpathlineto{\\pgfqpoint{0.996897in}{0.573082in}}%\n\\pgfpathlineto{\\pgfqpoint{1.065695in}{0.641250in}}%\n\\pgfpathlineto{\\pgfqpoint{1.134494in}{0.722249in}}%\n\\pgfpathlineto{\\pgfqpoint{1.203293in}{0.814750in}}%\n\\pgfpathlineto{\\pgfqpoint{1.272091in}{0.917235in}}%\n\\pgfpathlineto{\\pgfqpoint{1.340890in}{1.028020in}}%\n\\pgfpathlineto{\\pgfqpoint{1.409688in}{1.145286in}}%\n\\pgfpathlineto{\\pgfqpoint{1.478487in}{1.267108in}}%\n\\pgfpathlineto{\\pgfqpoint{1.547285in}{1.391486in}}%\n\\pgfpathlineto{\\pgfqpoint{1.616084in}{1.516377in}}%\n\\pgfpathlineto{\\pgfqpoint{1.684882in}{1.639730in}}%\n\\pgfpathlineto{\\pgfqpoint{1.753681in}{1.759520in}}%\n\\pgfpathlineto{\\pgfqpoint{1.822480in}{1.873781in}}%\n\\pgfpathlineto{\\pgfqpoint{1.891278in}{1.980635in}}%\n\\pgfpathlineto{\\pgfqpoint{1.960077in}{2.078329in}}%\n\\pgfpathlineto{\\pgfqpoint{2.028875in}{2.165258in}}%\n\\pgfpathlineto{\\pgfqpoint{2.097674in}{2.239995in}}%\n\\pgfpathlineto{\\pgfqpoint{2.166472in}{2.301312in}}%\n\\pgfpathlineto{\\pgfqpoint{2.235271in}{2.348204in}}%\n\\pgfpathlineto{\\pgfqpoint{2.304069in}{2.379899in}}%\n\\pgfpathlineto{\\pgfqpoint{2.372868in}{2.395878in}}%\n\\pgfpathlineto{\\pgfqpoint{2.441667in}{2.395878in}}%\n\\pgfpathlineto{\\pgfqpoint{2.510465in}{2.379899in}}%\n\\pgfpathlineto{\\pgfqpoint{2.579264in}{2.348204in}}%\n\\pgfpathlineto{\\pgfqpoint{2.648062in}{2.301312in}}%\n\\pgfpathlineto{\\pgfqpoint{2.716861in}{2.239995in}}%\n\\pgfpathlineto{\\pgfqpoint{2.785659in}{2.165258in}}%\n\\pgfpathlineto{\\pgfqpoint{2.854458in}{2.078329in}}%\n\\pgfpathlineto{\\pgfqpoint{2.923257in}{1.980635in}}%\n\\pgfpathlineto{\\pgfqpoint{2.992055in}{1.873781in}}%\n\\pgfpathlineto{\\pgfqpoint{3.060854in}{1.759520in}}%\n\\pgfpathlineto{\\pgfqpoint{3.129652in}{1.639730in}}%\n\\pgfpathlineto{\\pgfqpoint{3.198451in}{1.516377in}}%\n\\pgfpathlineto{\\pgfqpoint{3.267249in}{1.391486in}}%\n\\pgfpathlineto{\\pgfqpoint{3.336048in}{1.267108in}}%\n\\pgfpathlineto{\\pgfqpoint{3.404846in}{1.145286in}}%\n\\pgfpathlineto{\\pgfqpoint{3.473645in}{1.028020in}}%\n\\pgfpathlineto{\\pgfqpoint{3.542444in}{0.917235in}}%\n\\pgfpathlineto{\\pgfqpoint{3.611242in}{0.814750in}}%\n\\pgfpathlineto{\\pgfqpoint{3.680041in}{0.722249in}}%\n\\pgfpathlineto{\\pgfqpoint{3.748839in}{0.641250in}}%\n\\pgfpathlineto{\\pgfqpoint{3.817638in}{0.573082in}}%\n\\pgfpathlineto{\\pgfqpoint{3.886436in}{0.518866in}}%\n\\pgfpathlineto{\\pgfqpoint{3.955235in}{0.479492in}}%\n\\pgfpathlineto{\\pgfqpoint{4.024034in}{0.455606in}}%\n\\pgfpathlineto{\\pgfqpoint{4.092832in}{0.447600in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{0.350111in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{0.350111in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetmiterjoin%\n\\pgfsetlinewidth{0.803000pt}%\n\\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.553146in}{2.494870in}}%\n\\pgfpathlineto{\\pgfqpoint{4.261389in}{2.494870in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=2.407267in,y=2.578203in,,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont Sine and cosine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetbuttcap%\n\\pgfsetmiterjoin%\n\\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%\n\\pgfsetfillcolor{currentfill}%\n\\pgfsetfillopacity{0.800000}%\n\\pgfsetlinewidth{1.003750pt}%\n\\definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetstrokeopacity{0.800000}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.630924in}{2.096203in}}%\n\\pgfpathlineto{\\pgfqpoint{1.295257in}{2.096203in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{2.096203in}}{\\pgfqpoint{1.317479in}{2.118426in}}%\n\\pgfpathlineto{\\pgfqpoint{1.317479in}{2.417092in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{1.317479in}{2.439314in}}{\\pgfqpoint{1.295257in}{2.439314in}}%\n\\pgfpathlineto{\\pgfqpoint{0.630924in}{2.439314in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{2.439314in}}{\\pgfqpoint{0.608702in}{2.417092in}}%\n\\pgfpathlineto{\\pgfqpoint{0.608702in}{2.118426in}}%\n\\pgfpathquadraticcurveto{\\pgfqpoint{0.608702in}{2.096203in}}{\\pgfqpoint{0.630924in}{2.096203in}}%\n\\pgfpathclose%\n\\pgfusepath{stroke,fill}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{2.355981in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{2.355981in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=2.317092in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont sine}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgfsetrectcap%\n\\pgfsetroundjoin%\n\\pgfsetlinewidth{1.505625pt}%\n\\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%\n\\pgfsetstrokecolor{currentstroke}%\n\\pgfsetdash{}{0pt}%\n\\pgfpathmoveto{\\pgfqpoint{0.653146in}{2.201092in}}%\n\\pgfpathlineto{\\pgfqpoint{0.875368in}{2.201092in}}%\n\\pgfusepath{stroke}%\n\\end{pgfscope}%\n\\begin{pgfscope}%\n\\pgftext[x=0.964257in,y=2.162203in,left,base]{\\rmfamily\\fontsize{8.000000}{9.600000}\\selectfont cosine}%\n\\end{pgfscope}%\n\\end{pgfpicture}%\n\\makeatother%\n\\endgroup%\n"
  },
  {
    "path": "latexipy/__init__.py",
    "content": "'''\nLaTeXiPy\n========\n\nProvides\n  1. An easy way of generating plots in multiple formats.\n  2. Sensible defaults that fit perfectly with most LaTeX documents.\n  3. Compatibility with Matplotlib-based packages.\n  4. Easy restyling.\n\nThis documentation assumes that ``latexipy`` has been imported as ``lp``::\n\n  >>> import latexipy as lp\n\nYou will probably use ``lp.figure()`` the most (once for each block)::\n\n  >>> with lp.figure('filename'):\n  ...     draw_the_plot()\n\n'''\nfrom ._latexipy import (\n    latexify,\n    temp_params,\n    revert,\n    figure_size,\n    save_figure,\n    figure,\n    PARAMS,\n)\n\n__all__ = ['latexify', 'temp_params', 'revert', 'figure_size', 'save_figure',\n           'figure', 'PARAMS']\n\n__author__ = '''Jean Nassar'''\n__email__ = 'jn.masasin@gmail.com'\n__version__ = '1.0.1'\n"
  },
  {
    "path": "latexipy/_latexipy.py",
    "content": "'''\nAutomatically change Matplotlib figures to LaTeX figures.\n\n'''\nfrom contextlib import contextmanager\nimport errno\nimport logging\nimport math\nfrom pathlib import Path\nimport warnings\n\nimport matplotlib.pyplot as plt\n\n\nlogger = logging.getLogger('latexipy')\n\n\nINCH_PER_POINT = 1/72.27\nGOLDEN_RATIO = (math.sqrt(5) - 1) / 2\n\nMAX_HEIGHT_INCH = 8\nFONT_SIZE = 8\n\nPARAMS = {\n    'pgf.texsystem': 'xelatex',  # pdflatex, xelatex, lualatex\n    'text.usetex': True,\n    'font.family': 'serif',\n    'font.serif': [],\n    'font.sans-serif': [],\n    'font.monospace': [],\n    'pgf.preamble': [\n      r'\\usepackage[utf8x]{inputenc}',\n      r'\\usepackage[T1]{fontenc}',\n      ],\n    'font.size': FONT_SIZE,\n    'axes.labelsize': FONT_SIZE,\n    'axes.titlesize': FONT_SIZE,\n    'legend.fontsize': FONT_SIZE,\n    'xtick.labelsize': FONT_SIZE,\n    'ytick.labelsize': FONT_SIZE,\n}\n\n_ORIGINAL_PARAMS = dict(plt.rcParams)\n_ORIGINAL_BACKEND = plt.get_backend()\n\n\ndef latexify(params=PARAMS, new_backend='pgf'):\n    '''\n    Set up Matplotlib's RC params for LaTeX plotting.\n\n    Call this function before plotting the first figure.\n\n    Parameters\n    ----------\n    params : Optional[dict]\n        A dictionary containing the RC params that need to be updated. Default\n        is ``PARAMS``. The defaults should be okay for most cases, but\n        ``PARAMS`` can be updated via ``.update()`` as well.\n\n    new_backend : Optional[str|None]\n        The backend to switch too. Default is PGF, which allows a nicer PDF\n        output too.\n\n    Raises\n    ------\n    ValueError\n        If the new backend is not supported.\n\n    Example\n    -------\n    >>> params = PARAMS.copy()\n    >>> params.update({'font.family': 'sans-serif'})\n    >>> latexify(params)\n\n    '''\n    plt.rcParams.update(params)\n    if new_backend is not None:\n        try:\n            plt.switch_backend(new_backend)\n        except ValueError:\n            logger.error(f'Backend not supported: {new_backend!r}')\n            raise\n\n\ndef revert():\n    '''\n    Return to the settings before running ``latexify()`` and updating params.\n\n    '''\n    plt.rcParams.update(_ORIGINAL_PARAMS)\n    plt.switch_backend(_ORIGINAL_BACKEND)\n\n\n@contextmanager\ndef temp_params(font_size=None, font_family=None, font_serif=None,\n                font_sans_serif=None, font_monospace=None, params_dict=None):\n    '''\n    Temporarily set Matplotlib's RC params.\n\n    Parameters\n    ----------\n    font_size : Optional[int]\n        The font size to use. It changes all the components that are normally\n        updated with ``latexify()``. If you want to change something\n        individually, do so from within ``params_dict``.\n    font_family : Optional[str]\n        The font family to use.\n    font_serif : Optional[List[str]]\n        A list of serif fonts to use.\n    font_sans_serif : Optional[List[str]]\n        A list of sans-serif fonts to use.\n    font_monospace : Optional[List[str]]\n        A list of monospace fonts to use.\n    params_dict : Optional[Dict[str, Any]]\n        The dictionary of parameters to update, and the updated values. This is\n        only applied after going through the rest of the arguments.\n\n    '''\n    old_params = plt.rcParams\n    new_params = old_params.copy()\n\n    mapping = {\n        'font.size': font_size,\n        'axes.labelsize': font_size,\n        'axes.titlesize': font_size,\n        'legend.fontsize': font_size,\n        'xtick.labelsize': font_size,\n        'ytick.labelsize': font_size,\n        'font.family': font_family,\n        'font.serif': font_serif,\n        'font.sans-serif': font_sans_serif,\n        'font.monospace': font_monospace,\n    }\n\n    new_params.update({k: v\n                       for k, v in mapping.items()\n                       if v is not None})\n\n    if params_dict is not None:\n        new_params.update(params_dict)\n\n    plt.rcParams.update(new_params)\n    try:\n        yield\n    finally:\n        plt.rcParams.update(old_params)\n\n\ndef figure_size(width_tw=0.9, *, ratio=None, height=None, n_columns=1,\n                max_height=MAX_HEIGHT_INCH, doc_width_pt=345):\n    r'''\n    Get the necessary figure size.\n\n    Parameters\n    ----------\n    width_tw : Optional[float]\n        The width of the figure, as a proportion of the text width, between 0\n        and 1. Default is 0.9.\n    ratio: Optional[float]\n        The ratio of the figure height to figure width. If ``height`` is\n        specified, ``ratio`` is calculated from that and ``width``. Default is\n        the golden ratio.\n    height : Optional[float]\n        The height of the figure in inches. If ``ratio`` is specified,\n        ``height`` is ignored. Default is the golden ratio of the width.\n    n_columns : Optional[int]\n        The number of equally sized columns in the document. The figure will\n        never be larger than the width of one column.  Default is 1.\n    max_height : Optional[float]\n        The maximum height of the figure, in inches. Default is\n        ``MAX_HEIGHT_INCH``.\n    doc_width_pt : float\n        The text width of the document, in points. It can be obtained by typing\n        ``\\the\\textwidth`` in the LaTeX document. Default is 345.\n\n    Returns\n    -------\n    width : float\n        The figure width, in inches.\n    height : float\n        The figure height in inches.\n\n    '''\n    doc_width_in = doc_width_pt * INCH_PER_POINT\n    width = doc_width_in * width_tw / n_columns\n\n    if ratio is None:\n        if height is None:\n            ratio = GOLDEN_RATIO\n        else:\n            ratio = height / width\n\n    height = width * ratio\n\n    if height > max_height:\n        warnings.warn(f'height too large at {height} inches; '\n                      f'will automatically reduce to {max_height} inches.')\n        height = max_height\n    return width, height\n\n\ndef save_figure(filename, directory, exts, mkdir=True,\n                from_context_manager=False):\n    '''\n    Save the figure in each of the extensions.\n\n    Parameters\n    ----------\n    filename : str\n        The base name of the file, without extensions.\n    directory : str\n        The name of the directory in which to store the saved files.\n    exts : Sequence\n        A list of all the extensions to be saved, without the dot.\n    mkdir : Optional[bool]\n        Whether the directory should be created automatically if it does not\n        exist.  Default is True.\n    from_context_manager : Optional[bool]\n        Whether the function is being called from the ``figure`` context\n        manager.  This only affects the logging output. Default is False.\n\n    Raises\n    ------\n    FileNotFoundError\n        If the target directory does not exist and cannot be created.\n    NotADirectoryError\n        If the target directory is actually a file.\n    PermissionError\n        If there is no permission to write to the target directory.\n    ValueError\n        If the format is not supported.\n\n    Notes\n    -----\n    When integrating with LaTeX, the recommended format is PGF. PNG can be used\n    externally, such as in blog posts or as embedded images, while PDF can be\n    standalone, or inserted into LaTeX documents. A full list of supported\n    formats can be found by calling\n    ``plt.gcf().canvas.get_supported_filetypes_grouped()``\n\n    '''\n    directory = Path(directory)\n\n    if not from_context_manager:\n        logger.info(f'Saving {filename}...  ')\n\n    try:\n        plt.tight_layout(0)\n    except ValueError as e:\n        warnings.warn('No figures to save.')\n\n    if mkdir:\n        if directory.is_file():\n            msg = 'A file exists at directory location'\n            e = NotADirectoryError(errno.ENOTDIR, msg, str(directory))\n            logger.error(f'Directory set to file: {str(directory)}')\n            raise e\n        try:\n            directory.mkdir(parents=True, exist_ok=True)\n        except PermissionError as e:\n            logger.error('Permission denied for directory: '\n                         f'{str(directory)!r}')\n            raise\n\n    for ext in exts:\n        if from_context_manager:\n            logger.info(f'  Saving {ext}...')\n        full_filename = f'{filename}.{ext}'\n        try:\n            plt.savefig(str(directory/full_filename))\n        except FileNotFoundError as e:\n            logger.error(f'Directory does not exist: {str(directory)!r}.'\n                         'Please create it or set mkdir to True.')\n            raise\n        except PermissionError as e:\n            logger.error(f'Permission denied for file ({full_filename!r}) in'\n                         f'directory: {str(directory)!r}')\n            raise\n        except ValueError as e:\n            logger.error(f'Unsupported file format: {ext}')\n            raise\n\n\n@contextmanager\ndef figure(filename, *, directory='img', exts=['pgf', 'png'], size=None,\n           mkdir=True):\n    '''\n    The primary interface for creating figures.\n\n    Any Matplotlib-derived code in the scope of this context manager is valid,\n    and should output as expected.\n\n    Parameters\n    ----------\n    filename : str\n        The base name of the file, without extensions.\n    directory : Optional[str]\n        The name of the directory in which to store the saved files. Default is\n        'img'.\n    exts : Sequence\n        A list of all the extensions to be saved, without the dot. Default is\n        ['pgf', 'png'].\n    size : Optional[Sequence[float, float]]\n        The width and height of the figure, in inches. Default is\n        ``figure_size()``.\n    mkdir : Optional[bool]\n        Whether the directory should be created automatically if it does not\n        exist.  Default is True.\n\n    Raises\n    ------\n    FileNotFoundError\n        If the target directory does not exist and cannot be created.\n    NotADirectoryError\n        If the target directory is actually a file.\n    PermissionError\n        If there is no permission to write to the target directory.\n    ValueError\n        If the format is not supported.\n\n    Notes\n    -----\n    When integrating with LaTeX, the recommended format is PGF. PNG can be used\n    externally, such as in blog posts or as embedded images, while PDF can be\n    standalone, or inserted into LaTeX documents. A full list of supported\n    formats can be found by calling\n    ``plt.gcf().canvas.get_supported_filetypes_grouped()``\n\n    '''\n    if size is None:\n        size = figure_size()\n    logger.info(f'{filename}:')\n    logger.info('  Plotting...')\n    yield\n    plt.gcf().set_size_inches(*size)\n    save_figure(filename=filename, directory=directory, exts=exts, mkdir=mkdir,\n                from_context_manager=True)\n    plt.close()\n"
  },
  {
    "path": "requirements_dev.txt",
    "content": "\npip==21.0.1\nbumpversion==0.6.0\nwheel==0.36.2\nwatchdog==2.0.2\nflake8==3.9.0\ntox==3.23.0\ncoverage==5.5\nSphinx==3.5.3\nsphinx-rtd-theme==0.5.1\ncryptography==3.4.7\nPyYAML==5.4.1\npytest==6.2.2\npytest-cov==2.11.1\npytest-runner==5.3.0\ncodecov==2.1.11\nmatplotlib==3.4.0\n"
  },
  {
    "path": "setup.cfg",
    "content": "[bumpversion]\ncurrent_version = 1.0.1\ncommit = True\ntag = True\n\n[bumpversion:file:setup.py]\nsearch = version='{current_version}'\nreplace = version='{new_version}'\n\n[bumpversion:file:latexipy/__init__.py]\nsearch = __version__ = '{current_version}'\nreplace = __version__ = '{new_version}'\n\n[bdist_wheel]\nuniversal = 1\n\n[flake8]\nexclude = docs\n\n[aliases]\ntest = pytest\n\n"
  },
  {
    "path": "setup.py",
    "content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\n\"\"\"The setup script.\"\"\"\n\nfrom setuptools import setup, find_packages\n\nwith open('README.rst') as readme_file:\n    readme = readme_file.read()\n\nwith open('HISTORY.rst') as history_file:\n    history = history_file.read()\n\nrequirements = [\n    'matplotlib',\n]\n\nsetup_requirements = [\n    'pytest-runner',\n]\n\ntest_requirements = [\n    'pytest',\n]\n\nsetup(\n    name='latexipy',\n    version='1.0.1',\n    description=\"Generate beautiful plots for LaTeX using your existing matplotlib-based code.\",\n    long_description=readme + '\\n\\n' + history,\n    author=\"Jean Nassar\",\n    author_email='jn.masasin@gmail.com',\n    url='https://github.com/masasin/latexipy',\n    packages=find_packages(include=['latexipy']),\n    include_package_data=True,\n    install_requires=requirements,\n    license=\"MIT license\",\n    zip_safe=False,\n    keywords='latexipy',\n    classifiers=[\n        'Development Status :: 2 - Pre-Alpha',\n        'Intended Audience :: Developers',\n        'License :: OSI Approved :: MIT License',\n        'Natural Language :: English',\n        'Programming Language :: Python :: 3',\n        'Programming Language :: Python :: 3.6',\n    ],\n    test_suite='tests',\n    tests_require=test_requirements,\n    setup_requires=setup_requirements,\n)\n"
  },
  {
    "path": "tests/__init__.py",
    "content": "'''Unit test package for latexipy.'''\n"
  },
  {
    "path": "tests/test_latexipy.py",
    "content": "#!/usr/bin/env python\n'''\nTests for `latexipy` package.\n\n'''\nfrom functools import partial\nimport inspect\nimport math\nfrom unittest.mock import patch\n\nimport matplotlib as mpl\nmpl.use('Agg')\nimport matplotlib.pyplot as plt\nimport pytest\n\nimport latexipy as lp\nfrom latexipy._latexipy import INCH_PER_POINT, GOLDEN_RATIO, MAX_HEIGHT_INCH\n\n\nclass TestLatexify:\n    def test_defaults(self):\n        with patch('matplotlib.rcParams.update') as mock_update, \\\n                patch('matplotlib.pyplot.switch_backend') as mock_switch:\n            lp.latexify()\n\n            mock_update.assert_called_once_with(lp.PARAMS)\n            mock_switch.assert_called_once_with('pgf')\n\n    def test_custom_params(self):\n        with patch('matplotlib.rcParams.update') as mock_update, \\\n                patch('matplotlib.pyplot.switch_backend') as mock_switch:\n            params = {'param_a': 1, 'param_b': 2}\n            lp.latexify(params)\n\n            mock_update.assert_called_once_with(params)\n            mock_switch.assert_called_once_with('pgf')\n\n    def test_custom_backend(self):\n        with patch('matplotlib.rcParams.update') as mock_update, \\\n                patch('matplotlib.pyplot.switch_backend') as mock_switch:\n            lp.latexify(new_backend='QtAgg')\n\n            mock_update.assert_called_once_with(lp.PARAMS)\n            mock_switch.assert_called_once_with('QtAgg')\n\n    def test_raises_error_on_bad_backend(self):\n        with patch('matplotlib.rcParams.update') as mock_update:\n            with pytest.raises(ModuleNotFoundError):\n                lp.latexify(new_backend='foo')\n\n            mock_update.assert_called_once_with(lp.PARAMS)\n\n\ndef test_revert():\n    with patch('matplotlib.rcParams.update') as mock_update, \\\n            patch('matplotlib.pyplot.switch_backend') as mock_switch:\n        lp.latexify()\n        lp.revert()\n        mock_update.assert_called_with(dict(plt.rcParams))\n        mock_switch.assert_called_with(plt.get_backend())\n\n\nclass TestTempParams:\n    def test_defaults(self):\n        with patch('matplotlib.rcParams.update') as mock_update, \\\n                patch('matplotlib.pyplot.switch_backend') as mock_switch:\n            old_params = dict(plt.rcParams)\n            with lp.temp_params():\n                mock_update.assert_called_with(old_params)\n            mock_update.assert_called_with(old_params)\n\n    def test_font_size(self):\n        with patch('matplotlib.rcParams.update') as mock_update, \\\n                patch('matplotlib.pyplot.switch_backend') as mock_switch:\n            old_params = dict(plt.rcParams)\n            with lp.temp_params(font_size=10):\n                called_with = mock_update.call_args[0][0]\n                print(called_with)\n                assert all(called_with[k] == 10\n                           for k in lp.PARAMS if 'size' in k)\n            mock_update.assert_called_with(old_params)\n\n    def test_params_dict(self):\n        with patch('matplotlib.rcParams.update') as mock_update, \\\n                patch('matplotlib.pyplot.switch_backend') as mock_switch:\n            old_params = dict(plt.rcParams)\n            with lp.temp_params(params_dict={'font.family': 'sans-serif'}):\n                called_with = mock_update.call_args[0][0]\n                assert called_with['font.family'] == 'sans-serif'\n            mock_update.assert_called_with(old_params)\n\n    def test_params_dict_after_font_size(self):\n        with patch('matplotlib.rcParams.update') as mock_update, \\\n                patch('matplotlib.pyplot.switch_backend') as mock_switch:\n            old_params = dict(plt.rcParams)\n            with lp.temp_params(font_size=10, params_dict={\n                    'axes.labelsize': 12,\n                    'legend.fontsize': 12,\n                    }):\n                called_with = mock_update.call_args[0][0]\n                assert called_with['font.size'] == 10\n                assert called_with['axes.labelsize'] == 12\n                assert called_with['axes.titlesize'] == 10\n                assert called_with['legend.fontsize'] == 12\n                assert called_with['xtick.labelsize'] == 10\n                assert called_with['ytick.labelsize'] == 10\n\n            mock_update.assert_called_with(old_params)\n\n\nclass TestFigureSize:\n    def setup(self):\n        self.width = 345 * 0.9 * INCH_PER_POINT\n\n    def test_defaults(self):\n        height = GOLDEN_RATIO * self.width\n        assert lp.figure_size() == (self.width, height)\n\n    def test_ratio_no_height(self):\n        assert lp.figure_size(ratio=1) == (self.width, self.width)\n        assert lp.figure_size(ratio=0.5) == (self.width, self.width/2)\n\n    def test_ratio_height(self):\n        dimensions = (self.width, self.width)\n        assert lp.figure_size(ratio=1, height=5) == dimensions\n\n    def test_height_no_ratio(self):\n        assert lp.figure_size(height=5) == (self.width, 5)\n\n    def test_height_too_high(self):\n        with pytest.warns(UserWarning):\n            height = MAX_HEIGHT_INCH + 1\n            assert lp.figure_size(height=height) == (self.width,\n                                                     MAX_HEIGHT_INCH)\n\n    def test_columns(self):\n        width = self.width / 2\n        height = GOLDEN_RATIO * width\n        assert lp.figure_size(n_columns=2) == (width, height)\n\n\nclass TestSaveFigure:\n    def setup(self):\n        self.f = partial(lp.save_figure, 'filename', 'directory', ['png'])\n\n    def test_raises_error_if_directory_does_not_exist(self):\n        with patch('matplotlib.pyplot.tight_layout'), \\\n                patch('matplotlib.pyplot.savefig',\n                      side_effect=FileNotFoundError):\n            with pytest.raises(FileNotFoundError):\n                self.f(mkdir=False)\n\n    def test_raises_error_if_directory_is_file(self):\n        with patch('matplotlib.pyplot.tight_layout'), \\\n                patch('pathlib.Path.is_file', return_value=True):\n            with pytest.raises(NotADirectoryError):\n                self.f()\n\n    def test_raises_error_if_no_permission_directory_does_not_exist(self):\n        with patch('matplotlib.pyplot.tight_layout'), \\\n                patch('pathlib.Path.mkdir', side_effect=PermissionError), \\\n                patch('matplotlib.pyplot.savefig'):\n            with pytest.raises(PermissionError):\n                self.f()\n\n    def test_raises_error_if_no_permission_directory_exists(self):\n        with patch('matplotlib.pyplot.tight_layout'), \\\n                patch('pathlib.Path.mkdir'), \\\n                patch('matplotlib.pyplot.savefig',\n                      side_effect=PermissionError):\n            with pytest.raises(PermissionError):\n                self.f()\n\n    def test_raises_error_if_file_format_not_supported(self):\n        with patch('matplotlib.pyplot.tight_layout'), \\\n                patch('pathlib.Path.mkdir'):\n            with pytest.raises(ValueError):\n                lp.save_figure('filename', 'directory', exts=['nonexistent'])\n\n\n    def test_warns_if_no_figures(self):\n        with patch('pathlib.Path.mkdir'), \\\n                patch('matplotlib.pyplot.savefig'):\n            with pytest.warns(UserWarning):\n                self.f()\n\n    def test_saves_if_all_good(self):\n        with patch('matplotlib.pyplot.tight_layout'), \\\n                patch('pathlib.Path.mkdir'), \\\n                patch('matplotlib.pyplot.savefig') as mock_savefig:\n            self.f()\n            assert mock_savefig.called_once()\n\n    def test_saves_if_from_context_manager(self):\n        with patch('matplotlib.pyplot.tight_layout'), \\\n                patch('pathlib.Path.mkdir'), \\\n                patch('matplotlib.pyplot.savefig') as mock_savefig:\n            self.f(from_context_manager=True)\n            assert mock_savefig.called_once()\n\n\nclass TestFigure:\n    def test_default_size_is_figure_size(self):\n        default_size = lp.figure_size()\n\n        with patch('matplotlib.figure.Figure.set_size_inches') as mock_set, \\\n                patch('latexipy._latexipy.save_figure'):\n            with lp.figure('filename'):\n                pass\n\n            mock_set.assert_called_once_with(*default_size)\n\n    def test_figure_size_is_kwarg_size(self):\n        size = (6, 6)\n        with patch('matplotlib.figure.Figure.set_size_inches') as mock_set, \\\n                patch('latexipy._latexipy.save_figure'):\n            with lp.figure('filename', size=size):\n                pass\n\n            mock_set.assert_called_once_with(*size)\n\n    def test_parameters_passed_all_kwargs_default(self):\n        params = inspect.signature(lp.figure).parameters\n\n        with patch('matplotlib.figure.Figure.set_size_inches'), \\\n                patch('latexipy._latexipy.save_figure') as mock_save_figure:\n            with lp.figure('filename'):\n                pass\n\n            mock_save_figure.assert_called_once_with(\n                filename='filename',\n                directory=params['directory'].default,\n                exts=params['exts'].default,\n                mkdir=params['mkdir'].default,\n                from_context_manager=True,\n            )\n\n    def test_parameters_passed_custom_kwargs(self):\n        params = inspect.signature(lp.figure).parameters\n\n        with patch('matplotlib.figure.Figure.set_size_inches'), \\\n                patch('latexipy._latexipy.save_figure') as mock_save_figure:\n            with lp.figure('filename', directory='directory', exts='exts',\n                           mkdir='mkdir'):\n                pass\n\n            mock_save_figure.assert_called_once_with(\n                filename='filename',\n                directory='directory',\n                exts='exts',\n                mkdir='mkdir',\n                from_context_manager=True,\n            )\n"
  },
  {
    "path": "tox.ini",
    "content": "[tox]\nenvlist = py39, flake8, docs\n\n[travis]\npython =\n    3.9: py39\n\n[testenv:flake8]\nbasepython=python\ndeps=flake8\ncommands=flake8 latexipy\n\n[testenv]\nsetenv =\n    PYTHONPATH = {toxinidir}:{toxinidir}/latexipy\ndeps =\n    -r{toxinidir}/requirements_dev.txt\ncommands =\n    pip install -U pip\n    py.test --basetemp={envtmpdir} {posargs:--cov=latexipy}\n    codecov\n\n[testenv:docs]\nchangedir=docs/\ndeps =\n    sphinx\n    sphinx_rtd_theme\ncommands =\n    sphinx-build -b linkcheck ./ _build/\n    sphinx-build -b html ./ _build/\n\n; If you want to make tox run the tests with the same versions, create a\n; requirements.txt with the pinned versions and uncomment the following lines:\n; deps =\n;     -r{toxinidir}/requirements.txt\n"
  },
  {
    "path": "travis_pypi_setup.py",
    "content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\"\"\"Update encrypted deploy password in Travis config file.\"\"\"\n\n\nfrom __future__ import print_function\nimport base64\nimport json\nimport os\nfrom getpass import getpass\nimport yaml\nfrom cryptography.hazmat.primitives.serialization import load_pem_public_key\nfrom cryptography.hazmat.backends import default_backend\nfrom cryptography.hazmat.primitives.asymmetric.padding import PKCS1v15\n\n\ntry:\n    from urllib import urlopen\nexcept ImportError:\n    from urllib.request import urlopen\n\n\nGITHUB_REPO = 'masasin/latexipy'\nTRAVIS_CONFIG_FILE = os.path.join(\n    os.path.dirname(os.path.abspath(__file__)), '.travis.yml')\n\n\ndef load_key(pubkey):\n    \"\"\"Load public RSA key.\n\n    Work around keys with incorrect header/footer format.\n\n    Read more about RSA encryption with cryptography:\n    https://cryptography.io/latest/hazmat/primitives/asymmetric/rsa/\n    \"\"\"\n    try:\n        return load_pem_public_key(pubkey.encode(), default_backend())\n    except ValueError:\n        # workaround for https://github.com/travis-ci/travis-api/issues/196\n        pubkey = pubkey.replace('BEGIN RSA', 'BEGIN').replace('END RSA', 'END')\n        return load_pem_public_key(pubkey.encode(), default_backend())\n\n\ndef encrypt(pubkey, password):\n    \"\"\"Encrypt password using given RSA public key and encode it with base64.\n\n    The encrypted password can only be decrypted by someone with the\n    private key (in this case, only Travis).\n    \"\"\"\n    key = load_key(pubkey)\n    encrypted_password = key.encrypt(password, PKCS1v15())\n    return base64.b64encode(encrypted_password)\n\n\ndef fetch_public_key(repo):\n    \"\"\"Download RSA public key Travis will use for this repo.\n\n    Travis API docs: http://docs.travis-ci.com/api/#repository-keys\n    \"\"\"\n    keyurl = 'https://api.travis-ci.org/repos/{0}/key'.format(repo)\n    data = json.loads(urlopen(keyurl).read().decode())\n    if 'key' not in data:\n        errmsg = \"Could not find public key for repo: {}.\\n\".format(repo)\n        errmsg += \"Have you already added your GitHub repo to Travis?\"\n        raise ValueError(errmsg)\n    return data['key']\n\n\ndef prepend_line(filepath, line):\n    \"\"\"Rewrite a file adding a line to its beginning.\"\"\"\n    with open(filepath) as f:\n        lines = f.readlines()\n\n    lines.insert(0, line)\n\n    with open(filepath, 'w') as f:\n        f.writelines(lines)\n\n\ndef load_yaml_config(filepath):\n    \"\"\"Load yaml config file at the given path.\"\"\"\n    with open(filepath) as f:\n        return yaml.load(f)\n\n\ndef save_yaml_config(filepath, config):\n    \"\"\"Save yaml config file at the given path.\"\"\"\n    with open(filepath, 'w') as f:\n        yaml.dump(config, f, default_flow_style=False)\n\n\ndef update_travis_deploy_password(encrypted_password):\n    \"\"\"Put `encrypted_password` into the deploy section of .travis.yml.\"\"\"\n    config = load_yaml_config(TRAVIS_CONFIG_FILE)\n\n    config['deploy']['password'] = dict(secure=encrypted_password)\n\n    save_yaml_config(TRAVIS_CONFIG_FILE, config)\n\n    line = ('# This file was autogenerated and will overwrite'\n            ' each time you run travis_pypi_setup.py\\n')\n    prepend_line(TRAVIS_CONFIG_FILE, line)\n\n\ndef main(args):\n    \"\"\"Add a PyPI password to .travis.yml so that Travis can deploy to PyPI.\n\n    Fetch the Travis public key for the repo, and encrypt the PyPI password\n    with it before adding, so that only Travis can decrypt and use the PyPI\n    password.\n    \"\"\"\n    public_key = fetch_public_key(args.repo)\n    password = args.password or getpass('PyPI password: ')\n    update_travis_deploy_password(encrypt(public_key, password.encode()))\n    print(\"Wrote encrypted password to .travis.yml -- you're ready to deploy\")\n\n\nif '__main__' == __name__:\n    import argparse\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument('--repo', default=GITHUB_REPO,\n                        help='GitHub repo (default: %s)' % GITHUB_REPO)\n    parser.add_argument('--password',\n                        help='PyPI password (will prompt if not provided)')\n\n    args = parser.parse_args()\n    main(args)\n"
  }
]