<math> <semantics> <mrow> <mtext> LaTeX </mtext> </mrow> <annotation encoding="application/x-tex"> \LaTeX </annotation> </semantics> </math>LATEX笔记
1.将文章分块
一篇论文可能有很多部分组成,这样子都写在一起文章会很长不便于管理。将文章按章节分块是个好办法,一般将图片放在同一个文件夹,不同part的章节放在一个文件夹,通过命令
\input{part\part1}\newpage
\input{part\part2}\newpage
\input{part\part3}\newpage
这种形式来划分是一个不错的办法。需要说明的是大括号里面填的是章节所在的相对路径
2.数学公式符号加粗的方法
通过引入\usepackage{amsmath,bm}
宏包,然后在后面定义公式时通过\bm{}来加粗符号