latex学习笔记

1.首行缩进

/usepacakge{indentfirst}

/setlength{parindent}{1em}

2.公式加粗

usepackage{bm}

m{ }

3.附录

usepackage{appendix}

egin{appendices}

umberwithin{equation}{section}

enewcommand{ heequation}{Alph{section}.arabic{equation}}

section{ }

end{appendices}

4.多行公式对齐

usepackage{amsmath}

egin{align}

y=&=(x+1)^2\

&=x^2+2x+1

end{align}

5.公式斜体变正体(直体)

{ m ...} (注意 m命令在大括号以内)

6.参考文献编译

(pdf)latex+bibtex+(pdf)latex+(pdf)latex

在texmaker中可以是F1+F11+F1+F1

7.在ubuntu中安装texmaker

转自:http://milq.github.io/install-latex-ubuntu-debian/

命令:

sudo apt-get install texlive-full
sudo apt-get install texmaker
原文地址:https://www.cnblogs.com/zhanchao/p/8081754.html