zoukankan      html  css  js  c++  java
  • latex的listings宏包常用设置

    documentclass[UTF-8]{article}
    usepackage{listings}
    usepackage{color,xcolor}
    usepackage{fontspec}
    usepackage{xeCJK}
    setmonofont[Mapping={}]{Monaco}    %英文引号之类的正常显示,相当于设置英文字体
    setsansfont{Monaco} %设置英文字体 Monaco, Consolas,  Fantasque Sans Mono
    setmainfont{Monaco} %设置英文字体
    setCJKmainfont{微软雅黑}  %中文字体设置
    %setCJKsansfont{楷体} %设置中文字体
    %setCJKmonofont{} %设置中文字体
    
    definecolor{mygreen}{rgb}{0,0.6,0}
    definecolor{mygray}{rgb}{0.5,0.5,0.5}
    definecolor{mymauve}{rgb}{0.58,0,0.82}
    lstset{
    backgroundcolor=color{white},   % choose the background color
    basicstyle=footnotesizemonaco, % size of fonts used for the code或改成smallmonaco稍大
    numbers=left,                        % 设置行号
    numberstyle=	inymonaco,            % 设置行号字体大小
    columns=fullflexible,
    breaklines=true,                 % automatic line breaking only at whitespace
    captionpos=b,                    % sets the caption-position to bottom
    tabsize=4,                       % 把tab扩展为4个空格,默认是8个太长
    commentstyle=color{mygreen},    % 设置注释颜色
    escapeinside={\%*}{*)},          % if you want to add LaTeX within your code
    keywordstyle=color{blue},       % 设置keyword颜色
    stringstyle=color{mymauve}monaco,     % string literal style
    frame=single,                        % 设置有边框
    rulesepcolor=color{red!20!green!20!blue!20},
    % identifierstyle=color{red},
    language=c++,
    }
    
    egin{document}
    
    egin{lstlisting}
    inline int gcd(int a, int b) { 
        // 如果a<b,则递归得gcd(b,a%b)即gcd(b, a),即交换了位置,时间复杂度O(log max(a, b))
        return b==0?a:gcd(b,a%b)
    }
    inline int lcm(int a, int b) {
        return a/gcd(a,b)*b;
    }
    end{lstlisting}
    
    end{document}
  • 相关阅读:
    使用jquery的 $.grep实现es6的filter效果
    web移动前端页面,jquery判断页面滑动方向
    js for循环与for in循环的区别
    jq判断滚动条向上还是向下
    react中的hoc和修饰器@connect结合使用
    creat-react-app 如何在组件中img的src引入图片路径??
    react将字符串转义成html语句
    POJ 3905 Perfect Election (2-Sat)
    POJ 2296 Map Labeler (2-Sat)
    HDU Bomb Game 3622 (2-Sat)
  • 原文地址:https://www.cnblogs.com/litifeng/p/12174384.html
Copyright © 2011-2022 走看看