LaTeX入门
LaTeX入门
(〇)安装
- 使用迅雷
- https://mirrors.bfsu.edu.cn/CTAN/systems/texlive/Images/texlive2020.iso
- https://github.com/texstudio-org/texstudio/releases/download/3.0.4/texstudio-3.0.4-win-qt5.exe
快速模板
1 | \documentclass[UTF8,11pt]{article} % 文章类型 |
(一)文档
\documentclass{}
1 | \documentclass[UTF8,11pt]{ctexart} % 文章类型 |
(二)引入
\usepackage{}
1 | \usepackage{ctex} % 引入中文宏包 |
(三)信息
\title{}
\author{}
\date{}
1 | \title{文档的标题} % 标题 |
(四)环境
\begin{}
\end{}
1 | \begin{环境类型} |
(五)执行与命令
1 | % 宏执行:可传参的宏方法 |
(六)正文
{document}
1 | % \begin{...}和\end{...}构成一个环境 |
(七)结构
\part{}
\chapter{}
\section{}
\subsection{}
\subsubsection{}
\tableofcontents
1 | \part{部分} % 部分 |
(八)段落
\newline
\\
\par
\indent
1 | % 反斜杠是\newline的缩写,不会产生段落缩进,而\par可以,插入空行也可以,\indent是缩进字符 |
(九)字体
\bfseries
\textbf{}
\itshape
\textit{}
\zihao{}
1 | % ---------------------------------------------- |
(十)特殊符号
\quad
\qquad
\kern
\textbackslash
1 | % 空格 |
(十一)表格
{tabular}{lcrp}
\hline
1 | % 表格 |
(十二)图片
\includegraphics{}
1 | % 插入图片 |
(十三)列表
{itemize}
{enumerate}
1 | \begin{itemize} % 无序列表 |
(十四)公式
{equation}
1 | $ E=mc^2 $ % 公式$$ |
(十五)对齐
{flushleft}
{center}
{flushright}
1 | \begin{flushleft} |
(十六)脚注
\footnote{}
1 | \footnote{脚注1} |
(十七)参考文献
{thebibliography}
\bibitem{}
\cite{}
1 | \begin{thebibliography}{99} |
(十八)浮动体
{figure}
{table}
\centering
\caption{}
\label{}
\ref{}
1 | % 浮动体 |
(十九)盒子
\mbox{}
\makebox{}
fbox{}
\framebox{}
\setlength{}
\parbox{}
{minipage}
\rule{}
1 | % 盒子 |
(二十)颜色
\color[rgb]{}
\textcolor[rgb]{}
\colorbox[rgb]{}
\fcolorbox[rgb]{}
1 | \usepackage{xcolor} % 使用颜色宏包 |
(二十一)宏
\newcommend … [][]{}
1 | % 宏的定义必须在{document}外 |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Iamsleepingnow 世界!