1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| \lstset{ language=python, backgroundcolor=\color{white}, basicstyle=\ttfamily\small, keywordstyle=\color{blue!50!white}\bfseries, commentstyle=\color{green!70!black}, stringstyle=\color{red!40!white}, numbers=left, numberstyle=\tiny\color{gray}, stepnumber=1, numbersep=5pt, showstringspaces=false, breaklines=true, breakatwhitespace=true, frame=single, rulecolor=\color{lightgray} caption=标题 }
\begin{lstlisting} #include <iostream> using namespace std; int main() { cout << "Hello, World!" << endl; return 0; } \end{lstlisting}
|