latex展示python代码
时间: 2023-10-12 09:09:55 浏览: 45
Sure! 可以使用 `listings` 包中的 `lstlisting` 环境来展示 Python 代码,示例代码如下:
```latex
\documentclass{article}
\usepackage{listings}
\lstset{
language=Python,
basicstyle=\ttfamily,
keywordstyle=\bfseries,
commentstyle=\itshape,
stringstyle=\ttfamily\color{orange},
showstringspaces=false,
breaklines=true,
frame=lines,
backgroundcolor=\color{gray!10}
}
\begin{document}
\begin{lstlisting}
# This is a Python comment
# A simple Python program
def hello(name):
print("Hello, " + name + "!")
hello("world")
\end{lstlisting}
\end{document}
```
输出结果如下:
```python
# This is a Python comment
# A simple Python program
def hello(name):
print("Hello, " + name + "!")
hello("world")
```
希望这可以解决你的问题!如果还有其他问题,请随时问我。
阅读全文