R markdown(latex)作业必备

  1. 如何设置显示多级目录
    toc: yes # 设置目录
    toc_depth: 3 #设置目录深度;
  1. latex 空格
    大空格:\quad
    eg.x \quad y则显示为 x y x \quad y xy(注意\quad后面有空格,不然会报错)
    小空格:\
    eg.x\ y则显示为 x   y x\ y x y
  2. latex 分数
    \frac{}{}
    eg.\frac{x}{y} 则显示为 x y \frac{x}{y} yx
  3. latex 约等于
    \approx
    eg.x \approx 2 显示为 x ≈ 2 x \approx 2 x2
  4. latex 小于等于&大于等于
    \leq
    eg.x\leq 2 显示为 x ≤ 2 x\leq 2 x2
    \geq
    eg.x\geq2 显示为 x ≥ 2 x\geq 2 x2
  5. latex 加减号
    \pm
    eg.x \pm 2 显示为 x ± 2 x \pm 2 x±2
  6. latex 方括号
    \left[\right]
    eg.\left[x+|a|\right] 显示为 [ x + ∣ a ∣ ] \left[x+|a|\right] [x+a]
    顺便其实绝对值号比较容易,就是|
  7. latex 开平方根
    \sqrt{}
    eg.\sqrt{n} 显示为 n \sqrt{n} n
  8. latex希腊符号
    Δ \Delta Δ \Delta
    更多参考:https://blog.csdn.net/weixin_43659913/article/details/105161546
  9. latex 换行
    空行就可以了
    eg.
    asdfadsfhsadjhg
    (空行)
    ajkdfhjkasdhf

你可能感兴趣的:(latex)