CAN同学
CAN同学
LaTeX菜鸡,努力成长为大神

注册于 6月前

回答
1
文章
0
关注者
0

\usepackage{xcolor}
\usepackage{minted} % 语法高亮和代码样式设置方面更加强大和灵活
\usemintedstyle{xcode}
\usepackage{listings}% 引入listings包,用于在文档中插入代码,并可自定义代码样式
\lstset{
    basicstyle=\ttfamily, % 设置字体族
    numbers=left, %行号在左侧显示
    numberstyle= \tiny, %行号字体
    % identifierstyle=\color{black},
    keywordstyle=\bfseries\color{NavyBlue}, % 设置关键字为粗体,颜色为NavyBlue
    morekeywords={}, % 设置更多的关键字,用逗号分隔
    emph={}, % 指定强调词,如果有多个,用逗号隔开
    emphstyle=\bfseries\color{Rhodamine}, % 强调词样式设置
    commentstyle=\itshape\color{black!50!white}, % 设置注释样式:斜体+浅灰色
    columns=flexible %让注释变得紧凑
    stringstyle=\bfseries\color[RGB]{128,0,0}, % 设置字符串样式
    showstringspaces=false, %不显示代码字符串中间的空格标记
    breaklines=true,  %代码过长则换行
    frame=shadowbox, %阴影效果 + 用方框框住代码块
    % backgroundcolor=\color{red!50!green!50!blue!50}, %代码块背景色为浅灰色
    rulesepcolor= \color{ red!20!green!20!blue!20}, %代码块边框颜色
    escapeinside=``, %英文分号中可写入中文
    xleftmargin=2.4em, 
    xrightmargin=0.5em,
    aboveskip=1em,
    framexleftmargin=2em
}

发布
问题