本篇承接LaTex入门2,主要讲述:1. 如何在Overleaf中插入图像;2. 字体格式; 3. 公式格式的调整和引用;4. 表格的创建,调整和引用。
在文档中插入图像:
首先,想要插入图像我们必须导入新的package库: \usepackage{graphicx}
从此处选择上传本地的图像。上传后通过下面的命令就可以在文档中插入图像。
\includegraphcs[scale=0.2]{A}
% []中的参数调整图片大小,{}中的参数是图片名
在文档中更改字体
可视化的操作:
Overleaf除了给我们提供将LaTex code转换为文档的形式,同时也给我们提供了可视化的编辑工具,如下图:
进入到Visual Editor后我们就可以如同在CSDN中编辑文本一样编辑 Overleaf中的内容:
LaTex形式
粗体(boldface):\textbf{}
\item The \textbf{limit} definition of the e:
斜体(italics): \textit{}
\item The \textit{sum} definition of the e:
下划线(underline): \underline{}
\item The \underline{continue fraction} definition of e:
最终呈现的效果:
在文章中引用公式(Equation Reference)
通过\begin{equation} \end{equation} \label{} 以及\ref{} 来实现在文章中引用公式。
\item The \textbf{limit} definition of the e:
\begin{equation}
\label{limit}
e=\lim_{n\to\infty}\left(1+\frac{1}{n}\right)^n=\lim_{n\to\infty}\left(\frac{1}{\sqrt[n]{n!}}\right)
\end{equation}
Equation \ref{limit} is a simple function
调整公式(Align)
有时我们并不想要公式推导以固定的一行的形式呈现,我们可以让公式进行转行,这里就需要运用到我们的\begin{align}和\end{align}:
\begin{align}
%\label{limit}
e&=\lim_{n\to\infty}\left(1+\frac{1}{n}\right)^n\\ %"\\"的作用是转行
&=\lim_{n\to\infty}\left(\frac{1}{\sqrt[n]{n!}}\right) %“&”的作用是使等号对齐
\end{align}
分割和多行化公式(Split & Multiline the Equation)
如果不想要公式的每一行都存在一个序列号,也可以用split来实现:
\begin{equation}
\begin{split}
%\label{limit}
e&=\lim_{n\to\infty}\left(1+\frac{1}{n}\right)^n\\
&=\lim_{n\to\infty}\left(\frac{1}{\sqrt[n]{n!}}\right)
\end{split}
\end{equation}
把推导过程中的多行公式放在{equation}和{split}中,就可以实现对多个等号后的公式单个引用:
表格(Table)
我们使用\begin{tabular} \end{tabular}来创建表格,使用\begin{table} \end{table}将表格包裹起来使用:
\newpage
\section*{Useful Tricks}
\begin{table}
\caption{A table example} %给表格命名
\label{extable} %打上标签用于后续引用
\begin{center} %把表格放在中间
\begin{tabular}{|c|c|c|} \hline %创建表格,{|c|c|c|}代表有三列分栏,行的分栏线通过\hline来实现
1&2&3 \\ \hline
4&5&6 \\\hline
\end{tabular}
\end{center}
\end{table}
We can reference Table \ref{extable} %引用创建的表格
最终效果如下: