LaTeX

LaTeX

介绍

  • LaTeX 只是一个语言(可以理解为一个Linux的内核)

    • 分类(类似于Linux的发行版, 有Fedora, Manjaro, Ubuntu, Redhat)
      • XeLaTeX
      • pdflatexmk
  • CTeX, TeXLive(MacTeX)类似于Xcode和Visual studio, 是一个集成开发工具

MacTex组件

  • TeXShop: 官方MacTeX自带的编译器, 没有华丽的外表, 但是比较轻量

XeLaTeX使用

  • 基本配置

documentclass[11pt, a4paper]{article}
	itle{This is a demo}
author{JH}
date{	oday}
egin{document}
maketitle
Hello, world! % this is a comment.

egin{thebibliography}{99}
ibitem{1} ref1
ibitem{2} ref2
end{thebibliography}

end{document}
  • section和subsection进行层次划分
  • paragraph和subparagraph会将字体加粗, 并且sub开头的会进行缩进
  • 表示换行
原文地址:https://www.cnblogs.com/megachen/p/9998705.html