I need to include a bunch of Matlab code in my report, and found a template for
\lstset
settings using Google (see code in the end of the post). I then added the breaklines=true
in order to avoid problems with long lines. The thing is though, that it keeps writing "breaklines" every time it breaks a line (it literally writes it in letters in the document). I have looked everywhere for help, but can't find anyone who had this issue before. Am I completely retarded?Hope you can help, thanks.
- Jake
Code: Select all
\lstloadlanguages{Matlab}
\lstset{language = Matlab, % Use MATLAB
basicstyle = \small\ttfamily, % Use small true type font
keywordstyle = [1]\color{Blue}\bf, % MATLAB functions bold and blue
keywordstyle = [2]\color{Purple}, % MATLAB function arguments purple
keywordstyle = [3]\color{Blue}\underbar, % User functions underlined and blue
identifierstyle =, % Nothing special about identifiers
%
% Comments small dark green courier
commentstyle = \usefont{T1}{pcr}{m}{sl}\color{MyDarkGreen}\small,
stringstyle = \color{Purple}, % Strings are purple
showstringspaces = false, % Don't put marks in string spaces
tabsize = 5, % 5 spaces per tab
%
%%% Put standard MATLAB functions not included in the default
%%% language here
morekeywords={xlim,ylim,var,alpha,factorial,poissrnd,normpdf,normcdf},
%
%%% Put MATLAB function parameters here
morekeywords=[2]{on, off, interp},
%
%%% Put user defined functions here
morekeywords=[3]{FindESS, homework_example},
%
morecomment = [l][\color{Blue}]{...}, % Line continuation (...) like blue comment
numbers = left, % Line numbers on left
firstnumber = 1, % Line numbers start with line 1
numberstyle = \tiny\color{Blue}, % Line numbers are blue
stepnumber = 5 % Line numbers go in steps of 5
breaklines = true
breakatwhitespace = false
prebreak = \space
postbreak = \space
}