LaTeX-Overleaf使用

1、下一段落

        空行

2、加粗

        ctrl+b

3、斜体

        ctrl+i; \emph{hello world}   俩个效果一样

4、新的章节,1 Introduction,4 Conclusion

        \chapter{}  %article下模式不存在

        \section{Introduction}  1  1.1   1.1.1

        \subsection{}

        \subsubsection{}

        \paragraph{}

5、行内公式

        $a=b+c$

6、行间公式

        \begin{equation}
            a=b+c
        \end{equation}

7、输入中文

        菜单使用XeLaTex,最顶部的\documentclass{article}括号内换成ctexart,删除下一行

        菜单使用XeLaTex,第二行改成\usepackage[fontset=ubuntu]{ctex}

8、document前,preamble导言区;后,正文区;

        注释%

9、带点标题   

  • one
  • two

        \begin{itemize}
            \item one
            \item two
        \end{itemize}

10、有序标题

  1. one
  2. two

       \begin{enumerate}
            \item one
            \item two
        \end{enumerate}        

11、 生成目录

        \tableofcontents         正文

        \usepackage{hyperref}           序言                                                        

你可能感兴趣的:(文档资料)