WinEdt10.3学习笔记
Day 1
\documentclass{book} %{book}书籍排版 {article}文章排版 {report}学术报告 {letler}信件排版
\usepackage{amsmath} %宏包
\usepackage{enumerate} %用于修改列表编号的宏包
%\usepackage{multirow} %列单元格合并的宏包
\usepackage{longtable} %表格跨页显示
\begin{document}
\title{This is my book} %标题
\author{TOM} %作者
\date{} %日期。如果不写此行,则自动写入当前日期
\maketitle %标题页结束
\tableofcontents %目录。连续编译两次在PDF中才会出现目录
\mainmatter %表示此后为文章的正文部分,页码也会从之后开始为第一页
\part{Elementary} %第一部分
\chapter{Introduction} %第一章
\section{First section} %第一节
\subsection{\LaTeX Study} %第一部分
%列表 1、Itemize 2、Enumerate
% 1、Itemize 前面只有一个黑点,没有编号
%打开方式 Insert->Lists->Itemize
\begin{itemize}
\item Item1
\begin{itemize} %嵌套使用
\item 1
\item 2
\end{itemize}
\item Item2
\item Item3
\end{itemize}
% 2、Enumerate 前面有编号,默认编号是1.2.3
%打开方式 Insert->Lists->Enumerate
\begin{enumerate}
\setcounter{enumi}{5} %设置编号从5之后开始,即从6开始
\item Item1
\begin{enumerate} %嵌套使用
\item 1
\item 2
\end{enumerate}
\item Item2
\item Item3
\item Item4
\end{enumerate}
\begin{enumerate}[\bfseries A.] %[A.]将编号改成A.B.C \bfseries是将后面的字加粗
\item Item1
\begin{enumerate} %嵌套使用
\item 1
\item 2
\end{enumerate}
\item Item2
\end{enumerate}
%表格环境 c居中对齐 l左对齐 r右对齐
\begin{tabular}{|c|c|c|} %|c|c|c| |表示竖线 c表示居中对齐 3个c表示三列都是居中对齐
\hline %横线
1 & 2 & 3 \\
\hline
4 & 5 & 6 \\
\hline
7 & 8 & 9 \\
\hline
\end{tabular}
\eject %换页
\begin{tabular}{lllllll}
\hline
brabd & type & price & CPU & GPU & size & card\\
\hline
MOTO & 61165 & 4561 & 1613213 & 132132 & 54566 & 465\\
SAMSUNG & 156121 & 5461 & 6123123 & 4561 & 852 & 963\\
SAMSUNG & 5562 & 23 & 4 & gjj & g5g & ggf4\\
SHARP & 56513 & fry54 & fg & g5t5 & 87trd & 8i7g\\
\hline
\end{tabular}
\eject
\begin{table} %table表格可以对表格命名
\centering %居中
\begin{tabular}{ccccccc}
\hline
brabd & type & price & CPU & GPU & size & card\\
\hline
% \multicolumn{2}{c}{MOTO 61165}行单元格合并 {2}合并单元格数量 {c}对齐方式 {MOTO 61165}合并的数据
% \multirow 列单元格合并
\multicolumn{2}{c}{MOTO 61165} & 4561 & 1613213 & 132132 & 54566 & 465\\
SAMSUNG & 156121 & 5461 & 6123123 & 4561 & 852 & 963\\
\cline{3-6} %第三、四列数据下加下划线
SHARP & 56513 & fry54 & fg & g5t5 & 87trd & 8i7g\\
\hline
\end{tabular}
\caption{This is my table} % \caption{This is my table}对表格命名 \label{} 超链接,可有可无
\end{table}
%跨页显示表格
\begin{center} %表格居中
\begin{longtable}{ccc} %表格中的内容居中
\caption{This is longtable}\\ %表格名称
\begin{tabular}{ccc}
\hline
1 & 2 & 3 \\
\hline
4 & 5 & 6 \\
\hline
7 & 8 & 9 \\
\hline
\end{tabular}
\end{longtable}
\end{center}
\eject
This is my book!This is my book!This is my book!This is my book!
This is my book!This is my book!This is my book!
This is my book!This is my book!
\chapter{Balabala} %第二章
\part{Conclusion} %第二部分
\chapter{introduction} %第一章
\section{first section} %第一节
\subsection{\LaTeX Study} %第一部分
\end{document}