本文章主要向大家分享一些LaTeX的基本语法以及常用的指令和环境,也方便自己及时回顾所学。
基本语法
为了条理清楚,就直接列了个列表:
- 指令前需要加 \
- 环境以\begin{}开头,\end{}结尾
- {}不仅常常附带在一些指令后面作为需要添加的内容,也起到了限制作用域的效果,使得一些指令仅仅作用在这对符号里面
- latex中的指令区分大小写
- 指令后的{ }为必须添加内容,[ ]为可选择添加内容
- 需要使用类似转义字符的方式输入&、%、{ 等符号
部分常用指令
标题指令中的汉字为需要输入的命令,数字通常可以自由更改
\documentclass{文章格式} 选择文章格式
usepackage{宏包}
\title{标题}
\tableofcontents 目录
\section{名称} 章节
\author {作者姓名}
\footnote{脚注}
\cite{引文标志} 引用文献
$ 公式 $ 公式
$$ 公式 $$ 公式居中
\textbf 粗体字体
\textit 斜体字体
\textsc 大写字体
\texttt 等宽字体
{\tiny abc…} 极小字体
{\scriptsize abc…} 较小字体
{\normalsize abc…} 一般字体
{\large abc…} 大字体
{\Large abc…} 大大字体
{\LARGE abc…} 大大大字体
\linespread{行间距1.5,2.0…}
\usepackage{geometry}
\geometry{left=1.5in,right=1.5in,top=1in,bottom=1in} 页边距
\par 换行
常用环境及示例
这里搞成代码格式的,使用起来方便,省事。
有序列表:
\begin{enumerate}
\item 内容
\end{enumerate}
无序列表:
\begin{itemize}
\item 内容
\end{itemize}
theorm定理部分:
\section{theorem}
\newtheorem{定理名字}{推论名字}[是否属于section]
\begin{推论名字}
内容
\end{推论名字}
带序号的公式:
\begin{equation}
公式
\end{equation}
reference引用部分:
\begin{thebibliography}{文献数量9,99..}
\bibitem{引文标志} 引文
...
\end{thebibliography}
页脚,页眉,页码环境设置:
\usepackage{fancyhdr}
\usepackage{lastpage}
\pagestyle{fancy}
\lhead{Team # 2011}
\chead{America model}
\rhead{\thepage \ of \pageref{LastPage}}
\cfoot{}
插入单图示例:
先引入宏包\usepackage{graphicx}
\begin{figure}[htb]
\centering
\includegraphics[scale=0.2]{pic_name.png}
\caption{pic2}
\end{figure}
插入并排图片示例:
先引入宏包\usepackage{graphicx}
\begin{figure}[htb]
\begin{minipage}[t]{0.48\textwidth}
\centering
\includegraphics[scale=0.2]{pic_name.png}
\caption{pic1}
\end{minipage}
\begin{minipage}[t]{0.48\textwidth}
\centering
\includegraphics[scale=0.2]{pic_name.png}
\caption{pic2}
\end{minipage}
\end{figure}
暂时先写到这,如果之后遇到常用的指令会继续更新。。