0%

LaTeX笔记

还是要养成记笔记的习惯才好

既然大家都那么推崇LaTeX,那还是学着用好了。

LaTeX配置环境:TeXLive;编辑器:Texstudio。

数学公式

很多markdown编辑器都支持LaTeX数学公式。

分两种模式:行内模式(行文中插入),行间模式(单独成行)。

使用equation环境对公式编号。

中文支持

引入CJK宏包并应用CJK环境。

1
2
3
4
5
6
7
8
9
\documentclass[UTF8]{article}

\usepackage{ctex}

\begin{document}

我和我的祖国,一刻也不能分割。

\end{document}

或者,ctexart那几个环境相当于是在“\begin{document}”和“\end{document}”之间自动加入CJK环境

1
2
3
4
5
6
7
\documentclass[UTF8]{ctexart}

\begin{document}

无论我走到哪里,都留下一首赞歌。

\end{document}

清华的论文模版