向 Python 语言的列表添加单词

向 Python 语言的列表添加单词

我希望在插入到 LaTeX 文档的某些 Python 代码中添加一些关键字。我想让True&False显示为黄色,并让某些模块调用(例如ttk显示为红色)显示。我尝试使用 morekeywords 调用,但对我不起作用。以下是我的 LaTeX 代码:

\newcommand\pythonstyle{\lstset{
language=Python,
basicstyle=\ttm,
otherkeywords={self},             
keywordstyle=\ttb\color{deepblue},
morekeywords={ttk}
emph={MyClass,__init__},          
emphstyle=\ttb\color{deepred},    
stringstyle=\color{deepgreen},

showstringspaces=false            
}}

答案1

您可以使用

keywords=[<number>]{<list of keywords>}

添加另一组关键词,然后

keywordstyle={[<number>]<style commands>},

为这个新集合赋予一种风格。

由于我没有您颜色的原始定义,也没有 \ttb 命令的原始定义,在下面的示例中我使用了一些自己的设置,但您可以轻松使用自己的设置;代码是随机获取的,仅用于此示例。

\documentclass{article}
\usepackage{xcolor}
\usepackage{listings}
\usepackage{bera}% optional; just for the example

\lstset{
language=Python,
basicstyle=\ttfamily,
otherkeywords={self},             
keywordstyle=\ttfamily\color{blue!90!black},
keywords=[2]{True,False},
keywords=[3]{ttk},
keywordstyle={[2]\ttfamily\color{yellow!80!orange}},
keywordstyle={[3]\ttfamily\color{red!80!orange}},
emph={MyClass,__init__},          
emphstyle=\ttfamily\color{red!80!black},    
stringstyle=\color{green!80!black},
showstringspaces=false            
}

\begin{document}

\begin{lstlisting} 
def under_attack(col, queens):
    left = right = col
    for r, c in reversed(queens):
        left, right = left - 1, right + 1

        if c in (left, col, right):
            return True
    return False
    print 'This generation has {0} babies'.format(babies)
ttk.Button(buttonframe,width = 3,
           textvariable=guivars["%s %s" %(current, item)],
           command=lambda: remoteButton(current, item))
\end{lstlisting}

\end{document}

在此处输入图片描述

请注意,“ttk”被视为红色的关键字,这也是所要求的。

相关内容