通俗易懂的Latex教程文档

Posted zstar-_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通俗易懂的Latex教程文档相关的知识,希望对你有一定的参考价值。

本篇文档可以搭配视频讲解使用。
讲解视频:

通俗易懂的Latex教程(附数学建模国赛美赛模板)

完整视频:https://www.bilibili.com/video/BV1aT4y1f74w?

这是一份面向刚入门数模,想要快速上手Latex排版的同学的Latex教学文档。
在线编辑网站overleaf:https://www.overleaf.com/
我所使用的环境:TeX Live (自带编辑器TeXworks)
编辑器:TeXstudio

TeX Live和TeXstudio的安装

首先来看看TeX Live和TeXstudio的安装。
TeX Live安装镜像下载:
https://mirrors.concertpass.com/tex-archive/systems/texlive/Images/texlive2021.iso
TeXstudio的安装包下载:
http://texstudio.sourceforge.net/
下载之后的安装配置可以参考博文:
https://blog.csdn.net/qq_38386316/article/details/80272396

Latex基本框架

\\documentclass{article}
\\usepackage[UTF8]{ctex}

\\begin{document}
文件内容
\\end{document} 

标题

Latex标题层级:

  • section
  • subsection
  • subsubsection
  • paragraph
  • subparagraph

一级标题

\\section{一级标题内容}

二级标题

\\subsection{二级标题内容}

三级标题

\\subsubsection{三级标题内容}

sub:下一级

目录

\\tableofcontents

分页

\\newpage

列表

无序列表:

\\begin{itemize}
	\\item 第一点内容
	\\item 第二点内容
	\\item 第三点内容
\\end{itemize}

有序列表:

\\begin{enumerate}
	\\item 第一点内容
	\\item 第二点内容
	\\item 第三点内容
\\end{enumerate}

字体设置

字体加粗:

\\textbf{加粗的字体}

斜体:

\\textit{倾斜的字体}

下划线:

\\underline{}

行内缩进:

\\hspace{0.65em}

段内间隔:

\\vspace{2ex}

插入图片

需要使用两个宏包

\\usepackage{float} %设置图片浮动位置的宏包
\\usepackage{graphicx} %插入图片的宏包
\\usepackage{subfigure} %插入多图时用子图显示的宏包

单张图片:

\\begin{figure}[H]
	\\centering
	\\includegraphics[width=8cm]{../pic/p.png}% 图片相对位置
	\\caption{这里是图片的标题} % 图片标题 
\\end{figure}

多张图片(以两张图片为例):

\\begin{figure}[H]
	\\centering    
	\\subfigure[子图一的标题]{				% 图片1([]内为子图标题)
		\\includegraphics[width=0.45\\textwidth]{../pic/p.png}}% 子图1的相对位置
	\\subfigure[子图二的标题]{				% 图片2
		\\includegraphics[width=0.45\\textwidth]{../pic/p.png}}% 子图2的相对位置
	\\caption{总图标题}		% 总图标题
\\end{figure}

多张图片(以三张图片为例):

\\begin{figure}[H]
	\\centering    
	\\subfigure[子图一的标题]{				% 图片1([]内为子图标题)
		\\includegraphics[width=0.3\\textwidth]{../pic/p.png}}% 子图1的相对位置
	\\subfigure[子图二的标题]{				% 图片2
		\\includegraphics[width=0.3\\textwidth]{../pic/p.png}}% 子图2的相对位置
	\\subfigure[子图三的标题]{				% 图片2
		\\includegraphics[width=0.3\\textwidth]{../pic/p.png}}% 子图3的相对位置
	\\caption{总图标题}		% 总图标题
\\end{figure}

注:图片的标题是在下面,表格的标题是在上面。

插入公式

带公式标号:

\\begin{equation}

\\end{equation}

不带公式标号:

$$ 公式内容 $$

或者:

\\[公式内容\\]

公式复制神器:MathType

剪切和复制预置

公式识别神器:Mathpix

插入表格

符号说明:

\\begin{table}[H]
	\\centering
	\\caption{符号说明}
	\\begin{tabular}{cc}
		\\hline
		\\makebox[0.3\\textwidth][c]{符号}	&  \\makebox[0.4\\textwidth][c]{意义} \\\\ \\hline
		$L_n$	    & 经度\\\\ \\hline
		$L_a$	    & 纬度 \\\\ \\hline
	\\end{tabular}
\\end{table}

注:c表示水平居中,l表示左对齐,r表示右对齐,|表示竖线,hline表示横线。

表格表注插入

引入宏包:

\\usepackage{threeparttable}

在end{tabular}上插入:

	\\begin{tablenotes}
		\\footnotesize
		\\item 注:由于篇幅有限,这里仅展示部分数据。
	\\end{tablenotes}

实用网站:

1、https://tableconvert.com/

2、https://www.tablesgenerator.com/

参考文献

\\begin{thebibliography}{9}%宽度9
	\\bibitem{1} 姜启源,谢金星,叶俊.数学模型(第四版)[M].北京:高等教育出版社,2011.
	\\bibitem{2} 参考文献2.
\\end{thebibliography}

引用参考文献

首先设置:

\\newcommand{\\upcite}[1]{\\textsuperscript{\\textsuperscript{\\cite{#1}}}}

引用:

\\upcite{1}

特殊符号的插入

插入格式:

$..$

符号大全:
https://www.caam.rice.edu/~heinken/latex/symbols.pdf

模板使用

模板可在群文件中进行下载。使用详情见视频。

国赛模板

美赛模板

交流群:710413249

以上是关于通俗易懂的Latex教程文档的主要内容,如果未能解决你的问题,请参考以下文章

使用 Python 代码片段编写 LaTeX 文档

一个通俗易懂的 Android 复习文档 ,曾经飙上过热搜,看过都说 “傻瓜式教程“!

史上最通俗易懂的Python入门教程,漫画图文生动有趣,一看就会

通俗易懂的JavaScript进阶教程

通俗易懂的JavaScript进阶教程

史上最通俗易懂的Python入门教程,漫画图文生动有趣,一看就会