Created
October 1, 2018 02:30
-
-
Save haoliplus/d81866661e452a7cb8bdf9c1ffb20ed5 to your computer and use it in GitHub Desktop.
This file contains 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
%python | |
%=================Python | |
% Default fixed font does not support bold face | |
\DeclareFixedFont{\ttb}{T1}{txtt}{bx}{n}{12} % for bold | |
\DeclareFixedFont{\ttm}{T1}{txtt}{m}{n}{12} % for normal | |
% Custom colors | |
\usepackage{color} | |
\definecolor{deepblue}{rgb}{0,0,0.5} | |
\definecolor{deepred}{rgb}{0.6,0,0} | |
\definecolor{deepgreen}{rgb}{0,0.5,0} | |
% Python style for highlighting | |
\newcommand\pythonstyle{\lstset{ | |
language=Python, | |
basicstyle=\ttm, | |
otherkeywords={self}, % Add keywords here | |
keywordstyle=\ttb\color{deepblue}, | |
emph={MyClass,__init__}, % Custom highlighting | |
emphstyle=\ttb\color{deepred}, % Custom highlighting style | |
stringstyle=\color{deepgreen}, | |
frame=single, % Any extra options here | |
showstringspaces=false % | |
}} | |
% Python environment | |
\lstnewenvironment{python}[1][] | |
{ | |
\pythonstyle | |
\lstset{#1} | |
} | |
{} | |
% Python for external files | |
\newcommand\pythonexternal[2][]{{ | |
\pythonstyle | |
\lstinputlisting[#1]{#2}}} | |
% Python for inline | |
\newcommand\pythoninline[1]{{\pythonstyle\lstinline!#1!}} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment