zoukankan      html  css  js  c++  java
  • 支持中文

    1、documentclass{article}

        usepackage{CJK}

       egin{document}

    egin{CJK}{GBK}{song}
    卧槽
    end{CJK}


    end{document}

    2、documentclass 参数意义

    3、$sim$ 表示~

    4、附件

    代码地址http://yun.baidu.com/disk/home#list/vmode=list&path=%2Fresume

    5、newcommand

    使用 ewcommand可以自己定制命令
    语法格式
    ewcommand{yourcommand}[参数个数]{内容}
    比如:
    ewcommand{wuhao}{fontsize{10.5pt}{10.5pt}selectfont}
    用来定义一个选定字号命令,使用时
    语句“wuhao 这是五号字”
    将会使“这是五号字”的字号变成五号字。
    说明fontsize{}{}与selectfont是LaTeX提供的字号控制低级命令,供用户
    自己设置字号大小。
    fontsize{参数1}{参数1}中参数1为字号大小,参数2为行间距,
    只有使用selectfont命令之后,fontzize{}{}的设置才能生效。切记

    再比如:
    ewcommand{vector}[1]{${#1}_1,{#1}_2,cdots,{#1}_n$}
    定义好之后,

    vector{a}将会产生下标依次增大的向量a1,a2,...an(其实,在实际显示时,1,2,n
    都是下标形式的)

    6、

    documentclass[twoside]{article}


    usepackage{bbm}   
    usepackage{ctex}
    enewcommand{aselinestretch}{1.3}
    egin{document}

    itle{f{配电网节能项目}}
     
    maketitle

    ewpage
    section{范围}
    section{通讯方式}
    section{术语、定义和缩略语}
    section{帧结构和其它说明}
    section{应用层}
    subsection{电容器实时状态信息}
    end{document}

    7、解决CJKutf8的问题

  • 相关阅读:
    Leetcode 171. Excel Sheet Column Number
    Leetcode 206 Reverse Linked List
    Leetcode 147. Insertion Sort List
    小明一家人过桥
    Leetcode 125. Valid Palindrome
    Leetcode 237. Delete Node in a Linked List
    Leetcode 167 Two Sum II
    张老师的生日
    Leetcode 27. Remove Element
    Leetcode 283. Move Zeroes
  • 原文地址:https://www.cnblogs.com/wangdgy/p/6362567.html
Copyright © 2011-2022 走看看