插入包含很多行的 MATLAB 文件

插入包含很多行的 MATLAB 文件

我有几个 MATLAB 文件,里面有超过 100 行代码,但当我使用 时\lstinputlisting,我只能得到前 50 行左右的代码,而且它不会显示在下一页上。大概是它在同一页的某个地方飘走了。我试过使用\afterpage\clearpage\cleardoublepage\pagebreak\newpage,但都无济于事。

我是 LaTeX 的初学者,如能得到任何帮助我将非常感激。

谢谢!!

\lstset {language=Matlab,%  
    %basicstyle=\color{red},  
    breaklines=true,%  
    morekeywords={matlab2tikz},    
    keywordstyle=\color{blue},%  
    morekeywords=[2]{1}, keywordstyle=[2]{\color{black}},  
    identifierstyle=\color{black},%  
    stringstyle=\color{mylilas},  
    commentstyle=\color{mygreen},%  
    showstringspaces=false,  
    numbers=left,%  
    numberstyle={\tiny \color{black}},% size of the numbers  
    numbersep=9pt,  
     emph=[1]{for,end,break},emphstyle=[1]\color{red},    
    %emph=[2]{word1,word2}, emphstyle=[2]{style},      
}

相关内容