LaTex 快速上手指南
LaTex getting started
structure grammar
\documentclass[UTF8]{ctexart}/{article}/
\title{title}
\author{Colin Song}
\date{\today} (today’s date)
\begin{document}
\matetitle (create a title before body)
main body
\end{document}
basic grammar
体现 | 语法 |
---|---|
加粗 | \textbf{} |
斜体 | \textit{} |
下划线 | \underline{} |
部 | \part{} |
章 | \chapter{} |
新部分 | \section{name} |
子部分 | \subsection{name} |
图片 | \includegraphics{} |
picture
需要在前言中引用fraphicx包
\usepackage{graphicx}
随后在正文中使用以下代码在当前位置插入图片,head为图片文件名(可以省略.png拓展名)
\includegraphics{head}
如果遇到图片过大的情况,需要给与更改大小的指令
\includegraphics[width=0.5\textwidth]{head}
如果需要给图片添加标题,可以将图片嵌套在一个figure环境中
\begin{figure}
\centering 图片居中
\includegraphics[width=0.5\textwidth]{head}
\caption{标题}
\end{figure}
List
unordered list
\begin{itemize}
\item 列表项1
\item 列表项2
\end{itemize}
ordered list
\begin{enumerat}
\item 列表项1
\item 列表项2
\end{enumerat}
Math Formulas
coming soon
Table
基础表格
\begin{tabular}{ | l | c | r | } 代表列表有三列,左中右对齐
\hline
单元格1 & 单元格2 & 单元格3 \\
\hline
单元格4 & 单元格5 & 单元格6 \\
\hline
单元格7 & 单元格8 & 单元格9 \\
\hline
\end{tabular}
单独指定列宽度
p代替c,p代表paragraph,是一种允许设置列宽的列格式.
\begin{tabular}{ | p{2cm} | c | r | }
\hline
单元格1 & 单元格2 & 单元格3 \\
\hline
单元格4 & 单元格5 & 单元格6 \\
\hline
单元格7 & 单元格8 & 单元格9 \\
\hline
\end{tabular}
图表标题
\begin{table}
\center
\begin{tabular}{ | l | c | r | }
\hline
单元格1 & 单元格2 & 单元格3 \\
\hline
单元格4 & 单元格5 & 单元格6 \\
\hline
单元格7 & 单元格8 & 单元格9 \\
\hline
\end{tabular}
\caption{title}
\end{table}
Environment in VSCode
在已经安装Tex Live的前提下,在 VSCode 中下载 LaTex Workshop 插件即可.
快捷键 Crtl+Alt+V 进入预览窗口.
保存后会自动在同目录下生成PDF文件.
LaTex 快速上手指南
http://example.com/2022/12/14/LaTex getting started/