Created
July 20, 2025 08:29
-
-
Save timerring/a5d5d3cda0773def93fc750369394a67 to your computer and use it in GitHub Desktop.
the latex code template
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
| \usepackage{listings} | |
| \usepackage{xcolor} % using colorful setting | |
| \lstset{ % overall setting | |
| language=Python, | |
| basicstyle=\ttfamily\small, | |
| keywordstyle=\color{blue}, | |
| commentstyle=\color{gray}, | |
| numbers=left, | |
| numberstyle=\tiny, | |
| frame=single, | |
| breaklines=true | |
| } | |
| \begin{lstlisting}[caption={The name of this code}] | |
| import pandas as pd | |
| import numpy as np | |
| \end{lstlisting} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment