Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbn/itikz
Cell and line magic for PGF/TikZ-to-SVG rendering in Jupyter notebooks
https://github.com/jbn/itikz
ipython-magic ipython-notebook jupyter jupyter-notebook latex tikz tikz-figures
Last synced: 4 months ago
JSON representation
Cell and line magic for PGF/TikZ-to-SVG rendering in Jupyter notebooks
- Host: GitHub
- URL: https://github.com/jbn/itikz
- Owner: jbn
- License: mit
- Created: 2018-10-12T20:31:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-18T00:18:38.000Z (10 months ago)
- Last Synced: 2024-09-28T23:23:44.864Z (4 months ago)
- Topics: ipython-magic, ipython-notebook, jupyter, jupyter-notebook, latex, tikz, tikz-figures
- Language: Jupyter Notebook
- Homepage:
- Size: 109 KB
- Stars: 62
- Watchers: 4
- Forks: 9
- Open Issues: 14
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
=====
itikz
=====.. image:: https://img.shields.io/pypi/v/itikz.svg
:target: https://pypi.python.org/pypi/itikz.. image:: https://travis-ci.org/jbn/itikz.svg?branch=master
:target: https://travis-ci.org/jbn/itikz.. image:: https://img.shields.io/coveralls/github/jbn/itikz.svg
:target: https://coveralls.io/github/jbn/itikzCell magic for PGF/TikZ-to-SVG rendering in Jupyter
* Free software: MIT license
Basic Usage
-----------Install it:
.. code:: sh
pip install itikz
Load it:
.. code:: python
%load_ext itikz
Use it:
.. code:: tex
%%itikz --file-prefix implicit-demo- --implicit-pic
\draw[help lines] grid (5, 5);
\draw[fill=magenta!10] (1, 1) rectangle (2, 2);
\draw[fill=magenta!10] (2, 1) rectangle (3, 2);
\draw[fill=magenta!10] (3, 1) rectangle (4, 2);
\draw[fill=magenta!10] (3, 2) rectangle (4, 3);
\draw[fill=magenta!10] (2, 3) rectangle (3, 4);Getting Started Guide
---------------------`Getting Started Notebook `__