LaTeX

LaTeX是一种基于ΤΕΧ的排版系统
TeX Live是Windows平台的写LaTeX用的东西,Overleaf是网页的,TeXstudio是编辑器
TeX Live:https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/
TeXstudio:https://texstudio.org/
Overleaf:https://www.overleaf.com/

documentclass{article} % 文档类型

% 导言区开始
usepackage{ctex} % 引用宏包
% 导言区结束

egin{document} 
	%正文 
end{document}

参考:
https://www.jianshu.com/p/8f8da0517a31
https://zhuanlan.zhihu.com/p/46692154
http://aff.whu.edu.cn/huangzh/
http://lib.tsinghua.edu.cn/tutorial/courseware/latex.pdf

原文地址:https://www.cnblogs.com/holaworld/p/12445772.html