This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pygments.style import Style | |
from pygments.token import Comment, Generic, Keyword, Name, Number, Operator, Punctuation, String, Token | |
__all__ = ['PaperStyle'] | |
class PaperStyle(Style): | |
'''A paper-inspired Pygments style for Python.''' | |
class Dict: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\NeedsTeXFormat{LaTeX2e} | |
\ProvidesPackage{python}[ | |
2021/11/21 | |
Python Syntax Highlighting and Language Definitions for LaTeX Listings. | |
Provided by Filemon Mateus <mateus@utah.edu>. | |
] | |
\RequirePackage[procnames]{listings} | |
\RequirePackage{xcolor} | |
\definecolor{BLACK}{HTML}{111111} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{standalone} | |
\usepackage{pgfplots} | |
\pgfplotsset{ | |
compat={newest}, | |
grid={both}, | |
tick pos={left}, | |
tick align={outside}, | |
grid style={dotted}, | |
title style={font=\bfseries}, |