zoukankan      html  css  js  c++  java
  • latex表格代码

     基本代码

     1 egin{table}[!h]
     2 caption{Notations Used in Real-time Analysis.}
     3   label{table:notation}
     4   centering
     5 footnotesize %字体设置
     6 egin{tabular}{ll} %靠左,居中cc,靠右rr,可以加|  或者 {lp{6.6cm}} %超过6.6cm自动换行
     7     	oprule %相当于hline
     8     Notation & Definition \
     9     midrule
    10 emph{buff} & The buffer depth for each virtual channel \
    11 
    12 $t_r$ & The time to setup data path of start router \
    13 
    14   ottomrule
    15 end{tabular}
    16 end{table}

    Latex设置表格字体大小

    egin{table}[h]

    small %此处写字体大小控制命令

    egin{tabular}

    end{tabular}

    end{table}

    Latex 设置字体大小命令由小到大依次为:

    iny

    scriptsize

    footnotesize

    small

    ormalsize

    large

    Large

    LARGE

    huge

    Huge

      Latex下 字体大小命令 比较 

    size             10pt (default)   11pt option      12pt option 
    iny            5pt              6pt              6pt 
    scriptsize      7pt              8pt              8pt 
    footnotesize    8pt              9pt              10pt 
    small           9pt              10pt             11pt 
    ormalsize      10pt             11pt             12pt 
    large           12pt             12pt             14pt 
    Large           14pt             14pt             17pt 
    LARGE           17pt             17pt             20pt 
    huge            20pt             20pt             25pt 
    Huge            25pt             25pt             25pt
  • 相关阅读:
    基于RSA securID的Radius二次验证java实现(PAP验证方式)
    一些指令 & 一些知识 (Linux Spring log4j...)
    RSA, ACS5.X 集成配置
    Python中的动态属性与描述符
    设计模式(一):单例模式
    JavaWeb
    动态规划_背包问题
    动态规划_最长上升子序列
    MySQL复习
    动态规划_数字三角形
  • 原文地址:https://www.cnblogs.com/cpsmile/p/9577078.html
Copyright © 2011-2022 走看看