最近学习了关于论文的排版,需要用LaTeX软件,这里简单介绍一些汇总的LaTeX的常用用法:
1 LaTeX给文字或者公式添加方框
- \fbox{%
- \parbox{\textwidth}{%
- \begin{center}
- aaa\\
- bbb
- \end{center}
- }%
- }
2LaTeX的对齐方式
LaTeX 对齐方式
一行对齐:\leftline{左对齐} \centerline{居中} \rightline{右对齐}
多行或者段落对齐:
左对齐 \begin{flushleft}...\end{flushleft}
居中 \begin{center}...\end{center}
右对齐 \begin{flushright}...\end{flushright}
3、LaTeX设置空格
两个quad空格 | a \qquad b |
两个m的宽度 | |
quad空格 | a \quad b |
一个m的宽度 | |
大空格 | a\ b |
1/3m宽度 | |
中等空格 | a\;b | 2/7m宽度 | |
小空格 | a\,b | 1/6m宽度 | |
没有空格 | ab | ||
紧贴 | a\!b | 缩进1/6m宽度 |
\quad、1em、em、m代表当前字体下接近字符‘M’的宽度
4、LaTeX增加空行(不同场景不一样)
空一行,或者\vspace{3ex},或者\\
5.LaTeX设置字体大小
\begin{size}
.....content
\end{size}
\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge
6.LaTeX数学公式
数学公式的前后要加上 $ 或 \( 和 \),比如:$f(x) = 3x + 7$ 和 \(f(x) = 3x + 7\) 效果是一样的;
如果用 \[ 和 \],或者使用 $$ 和 $$,则该公式独占一行;
如果用 \begin{equation} 和 \end{equation},则公式除了独占一行还会自动被添加序号, 如何公式不想编号则使用 \begin{equation*} 和\end{equation*}.
7.LaTeX字符
普通字符在数学公式中含义一样,除了
# $ % & ~ _ ^ \ { }
若要在数学环境中表示这些符号# $ % & _ { },需要分别表示为\# \$ \% \& \_ \{ \},即在个字符前加上\。
8.LaTeX添加中文文本
在公式中插入文本可以通过 \mbox{text} 在公式中添加text,
9.LaTeX插图
1.插入jpg格式
\usepackage{graphicx}
\begin{figure}
\includegraphics[width=1.77in,height=1.75in]{1.jpg}
\end{figure}
(1)PDF Latex命令来编译;(2)上一步编译后直接生成了pdf,因此接下来必须用acrobat reader命令查看新生成的pdf文件。
如果是eps格式的图片插入,则编译过程是latex, dvips, ps2pdf。如果是pdf jpg png图形, 则编译过程是 pdflatex。
10LaTeX小例子
\documentclass{article}
\title{Hello World}
\begin{document}
\maketitle
\section{Hello China} China is in East Asia.
\subsection{Hello Beijing} Beijing is the capital of China.
\subsubsection{Hello Dongcheng District}
\paragraph{Tian'anmen Square}is in the center of Beijing
\subparagraph{Chairman Mao} is in the center of Tian'anmen Square
\subsection{Hello Guangzhou}
\paragraph{Zhejiang University} is the best university in Hangzhou.
\end{document}