LaTeX
LaTeX LaTeX 只是一个语言(可以理解为一个Linux的内核) 分类(类似于Linux的发行版, 有Fedora, Manjaro, Ubuntu, Redhat) XeLaTeX pdflatexmk CTeX, TeXLive(MacTeX)类似于Xcode和Visual studio, 是一个集成开发工具 TeXShop: 官方MacTeX自带的编译器, 没有华丽的外表, 但是比较轻量 基本配置 \documentclass[11pt, a4paper]{article} \title{This is a demo} \author{JH} \date{\today} \begin{document} \maketitle Hello, world! % this is a comment. \begin{thebibliography}{99} \bibitem{1} ref1 \bibitem{2} ref2 \end{thebibliography} \end{document} \section和\subsection进行层次划分 \paragraph和\subparagraph会将字体加粗, 并且sub开头的会进行缩进 \表示换行