The attached picture is a partial screenshot of the code listing I get from the following MWE. Note that the first character in some of the lines is sticking out to the left. Note the "U" and "W" in lines 2 and 4.
Why are they stickin gout? How do I fix it?
Code: Select all
\documentclass[]{article}
\usepackage{listings}
\begin{document}
\lstdefinestyle{mycode}{basicstyle=\small, % print whole listing small
numbers=none,%left, numberstyle=\tiny, stepnumber=5, numbersep=5pt,
frame=single,
breaklines=true
}
\lstset{
style=mycode,
language=Octave,
caption={plotBetaNew.m},
label={code:plotBetaNew.m}
}
\lstinputlisting{code/kruskal/plotBetaNew.m}
\end{document}