美文网首页
latex笔记

latex笔记

作者: 铭小狮子酱 | 来源:发表于2020-04-20 11:32 被阅读0次

    插入算法

    首先引入相应的package

    \usepackage{algorithm}
    \usepackage{algorithmic}
    

    插入表格

    \begin{table}
      \caption{Sample table title}
      \label{sample-table}
      \centering
      \begin{tabular}{lll}
        \toprule
        \multicolumn{2}{c}{Part}                   \\
        \cmidrule(r){1-2}
        Name     & Description     & Size ($\mu$m) \\
        \midrule
        Dendrite & Input terminal  & $\sim$100     \\
        Axon     & Output terminal & $\sim$10      \\
        Soma     & Cell body       & up to $10^6$  \\
        \bottomrule
      \end{tabular}
    \end{table}
    

    2. 插入图片

    \begin{figure}
      \centering
      \fbox{\rule[-.5cm]{0cm}{4cm} \rule[-.5cm]{4cm}{0cm}}
      \caption{Sample figure caption.}
    \end{figure}
    

    3. 插入引用

    \citet{hasselmo} investigated\dots
    

    效果

    Hasselmo, et al. (1995) investigated...
    

    使用插入的图片、表格、引用等

    \ref{sample-table}
    

    使用\ref和要引用的object的label即可。

    一些格式

    \textit{}: 斜体
    \textbf{}: 粗体
    

    数学符号

    \dots: 三点省略号
    \times: 乘号
    \underbrace_{1+2+\dots+n}^{n个}: 下面的大括号 
    \overbrace_{}^{}: 上面的大括号
    
    

    相关文章

      网友评论

          本文标题:latex笔记

          本文链接:https://www.haomeiwen.com/subject/sfdrihtx.html