LaTeX快速入门(简易模板)
一份不太简短的LaTeX2e介绍(新版完成)
https://www.latexstudio.net/
MikTex + VS Code 配置教程
LaTeX 中的页眉和页脚设置
调整LaTeX文档页面的大小
LaTeX 页面设置
LaTeX 学习网站资源汇总 (六篇博客总结)
Latex相关资源汇总
latextemplates
如何手动安装Miktex宏包
Installing-custom-packages
https://github.com/HarveySheppard/yLaTeX
https://github.com/alexisflesch/nexus
LaTeX 章节 Sections Chapters
latex系列–2 标题、章节、目录、标签、引用
使用 titlesec 宏包设置标题格式
latex subsubsubsection(四层深度)
Latex设置A4页面及页边距调整
latex documentclass 及相关布局
LaTeX页码设置
LaTex的book类型中,目录及chapter前自动插入空白页面
Latex排版 Chapter2格式调整(长度单位、字体、段落、页面、目录)
Latex 修改英文显示 Chaper 格式为自定义中文章节格式
添latex titlesec 修改标题与前后端之间的间隔
LaTeX之附录设置
LaTeX中如何做出“附录A、附录B……”的效果?
LATEX章节编号深度与目录深度的控制
Latex的页脚和页眉
latex如何把目录页的页码去掉?
在LaTeX中,如何在目录和章节(Chapter)等部分的shouye上显示页眉(解决没有页眉的问题)
如何在latex中加入目录,如何给目录添加超链接,以及如何去除超链接上的红色方框
LaTeX把不编号章节加进目录和 PDF 书签
Section numbers in PDF bookmarks
bookmark.pdf
Size substitutions with differences (Font) up to 0.41063pt have occurred.
Latex 更改section 字体
如何用LaTeX打出不同颜色的公式?
Latex 颜色设置…
LaTeX知识分享|如何设置字体颜色
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% kaobook
% LaTeX Class
% Version 0.9.7 (2021/06/02)
%
% This template originates from:
% https://www.LaTeXTemplates.com
%
% For the latest template development version and to make contributions:
% https://github.com/fmarotta/kaobook
%
% Authors:
% Federico Marotta (federicomarotta@mail.com)
% Based on the doctoral thesis of Ken Arroyo Ohori (https://3d.bk.tudelft.nl/ken/en)
% and on the Tufte-LaTeX class.
% Modified for LaTeX Templates by Vel (vel@latextemplates.com)
%
% License:
% LPPL (see included MANIFEST.md file)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% 设置文档类
%----------------------------------------------------------------------------------------
%--设置页面类型为book,页面大小为A4,为双面打印(如果使用奇偶页眉,必须是能),基字体大小为12pt--%
\documentclass[a4paper,twoside,12pt]{article}
%----------------------------------------------------------------------------------------
% 引入扩展包
%----------------------------------------------------------------------------------------
\usepackage[UTF8]{ctex} %显示中文
% \usepackage{graphicx}
% \usepackage{float}
% \usepackage{datetime}
\usepackage{fancyhdr} %用于设置页眉页脚
\usepackage[margin=1in]{geometry} %设置页边距1inch
%----------------------------------------------------------------------------------------
% 标题,作者,日期,在文档中调用\maketitle,会显示
%----------------------------------------------------------------------------------------
\title{LaTeX快速入门}
\author{xxx}
\date{\today}
%----------------------------------------------------------------------------------------
% 文档开始
%----------------------------------------------------------------------------------------
\begin{document}
%--清除页眉页脚--%
\pagestyle{empty}
%----------------------------------------------------------------------------------------
% 首页
%----------------------------------------------------------------------------------------
% \maketitle
首页
%----------------------------------------------------------------------------------------
% 目录
%----------------------------------------------------------------------------------------
\clearpage %换页
\tableofcontents
%----------------------------------------------------------------------------------------
% 正文
%----------------------------------------------------------------------------------------
\clearpage %换页
%--页眉页脚设置--%
\pagestyle{fancy} %设置页面样式(页眉页脚)为fancy格式
\fancyhf{} %清除所有的页眉和页脚样式
\pagenumbering{arabic}
\pagestyle{fancy} %设置页面样式(页眉页脚)为fancy格式
\fancyhf{} %清除所有的页眉和页脚样式
%--页眉设置--%
\fancyhead[L]{左页眉}
\fancyhead[R]{右页眉}
\fancyhead[C]{中间页眉}
%--页脚设置--%
\fancyfoot[L]{左页脚}
\fancyfoot[C]{\thepage} %页码
\fancyfoot[R]{右页脚}
\renewcommand{\headrulewidth}{4pt} %分隔线宽度4磅
\renewcommand{\footrulewidth}{4pt}
hello\LaTeX
\part{part标题}
\section{section标题}
\subsection{subsection标题}
\subsubsection{subsubsection标题}
\clearpage
\fancyhf{} %清除所有的页眉和页脚样式
%--页眉设置--%
\fancyhead[L]{左页眉12}
\fancyhead[R]{右页眉}
\fancyhead[C]{中间页眉}
%--页脚设置--%
\fancyfoot[L]{左页脚12}
\fancyfoot[C]{\thepage} %页码
\fancyfoot[R]{右页脚}
\renewcommand{\headrulewidth}{4pt} %分隔线宽度4磅
\renewcommand{\footrulewidth}{4pt}
\paragraph{paragraph标题}
\subparagraph{subparagraph标题}
\clearpage %换页
\pagenumbering{roman}
\begin{thebibliography}{99}
\bibitem{1} 参考文献1
\bibitem{2} 参考文献2
\end{thebibliography}
%----------------------------------------------------------------------------------------
% 附录
%----------------------------------------------------------------------------------------
\clearpage %换页
\begin{appendix}
\section{附录1}
\section{附录2}
\end{appendix}
%----------------------------------------------------------------------------------------
% 尾页
%----------------------------------------------------------------------------------------
\clearpage %换页
%--清除页眉页脚--%
\pagestyle{empty}
尾页
\end{document}
LaTeX 文档类(\documentclass)
latex中自定义的命令———\newcommand
\pagestyle{style}
ctex
CTEX宏集提供了四个中文文档类:ctexart、ctexrep、ctexbook 和ctexbeamer,分别对应 LATEX的标准文档类article、report、book 和beamer。