I'm using the minted package to syntax my code. When I'm doing so in I'm using the Matlab language. When to continue on the next line, we do so in Matlab by entering ... before the next row. However, the output in the pdf marks the actual row with a red square.
Now I'm inside the Matlab lexer math.py file and looking for way to add ... to be accepted and not to be treated as an error in my code. How should I put it?
Currently inside minted:
\begin{minted}[frame=lines, framesep=3mm, linenos=true, mathescape]{matlab}
function X = c(a, b,...
c)
\end{minted}
The dots above yields the red square.
\documentclass{...}and ending with\end{document}. – Marco Daniel May 11 '13 at 20:19...-- You are getting the highlighting of an error -- a missing brace. – Marco Daniel May 11 '13 at 20:50function X = c(a, b,... %)– Marco Daniel May 11 '13 at 21:35mintedis not really TeX at all, so is not something we can help with. – Joseph Wright Oct 05 '13 at 21:44matlab-prettifierpackage; see this answer. – jub0bs Apr 28 '14 at 16:30