listings-setup.tex 629 B

12345678910111213141516171819202122232425
  1. % Contents of listings-setup.tex
  2. \usepackage{xcolor}
  3. \lstset{
  4. basicstyle=\ttfamily,
  5. numbers=left,
  6. keywordstyle=\color[rgb]{0.13,0.29,0.53}\bfseries,
  7. stringstyle=\color[rgb]{0.31,0.60,0.02},
  8. commentstyle=\color[rgb]{0.56,0.35,0.01}\itshape,
  9. numberstyle=\footnotesize,
  10. stepnumber=1,
  11. numbersep=5pt,
  12. backgroundcolor=\color[RGB]{248,248,248},
  13. showspaces=false,
  14. showstringspaces=false,
  15. showtabs=false,
  16. tabsize=2,
  17. captionpos=b,
  18. breaklines=true,
  19. breakatwhitespace=true,
  20. breakautoindent=true,
  21. escapeinside={\%*}{*)},
  22. linewidth=\textwidth,
  23. basewidth=0.5em,
  24. }