目录
Part_1
1、变量、公式用$$包起来更好看
2、\begin{math} 和 $$ 的 作用一样
3、在有特殊数学或物理意义的公式里的字母或组合前面要加上\operatorname
4、整齐排列!!
5、一些杂散的句法点
本篇博文主要是本人在Overleaf网站上学习Latex语句过程的记录及反思。
至于想要安装的同学,请看这篇博文:LaTeX新手入门以及TeXlive和TeXstudio的安装使用https://blog.csdn.net/zywhehe/article/details/83113214
Sharelatex和Overleaf合并了,咱也不知道两家公司有什么渊源,只知道编辑Latex不用安装一系列东西,在Overleaf网页上就可以了,而且这种云编译不用受限于电脑,只要有一台计算机,就可以继续编辑文章,爽歪歪~~
作为一个Latex小白,想要系统学习Latex,本人是参考了下面Overleaf官网的教程,一步一步跟着来的,毕竟这种东西还是要实操才能掌握的嘛~
https://www.overleaf.com/learn/latex/Free_online_introduction_to_LaTeX_(part_1)(这是教程的第一部分)
昨晚根据PPT写出了第一篇不是论文的文档,要注意的点有:
(以下代码段并不完全,要想在Latex的编辑器中能运行出结果,必须在“函数”体内,就好比C语言代码必须放在一个函数的两个花括号{}内部才有效一样。Emmm...我还是把结构体放出来吧:
\documentclass{article}
\begin{document}
内容...
\end{document}
\end{document}
有了这个基本的框架之后,再在此基础上加文章的其他部分就可以了。)
%not so good:
Let a and b be distinct positive integers, and let c = a - b + 1.
%much better:
%%空行相当于换行。
Let $a$ and $b$ be distinct positive integers, and let $c = a - b + 1$.
运行结果:
在表达公式的时候,可以用\begin{math}或$$在行内显示公式,也可以用\begin{equation}在行间显示标记序号的公式。
We can write
\begin{math}
\Omega = \sum_{k=1}^{n} \omega_k
\end{math}
or $\Omega = \sum_{k=1}^{n} \omega_k $
in text, or we can write
\begin{equation}
\Omega = \sum_{k=1}^{n} \omega_k
\end{equation}
to display it.
运行结果:
\begin{equation*} %%不标序号的公式
\Omega = \sum_{k=1}^{n} \omega_k
内容...
\end{equation*}
一旦在equation后面跟上*就说明这个公式不要自动编号。
\begin{equation}
\beta_i =
\frac{\operatorname{Cov}(R_i, R_m)}
{\operatorname{Var}(R_m)}
\end{equation}
%错误示范:
E[$X_{i}$] = $\mu$ and Var[$X_{i}$] =$ \sigma^{2}<\infty$
%标准答案:
$\operatorname{E}[X_i] = \mu$ and
$\operatorname{Var}[X_i] = \sigma^2 < \infty$
上面两段的运行结果如下:虽然错误示范和标准答案看起来好像差不多,但是错误示范的那种写法很不规范,如果一开始不按照正确的来,到后面很容易自己把自己搞晕了。。。
\begin{align*}
(x+1)^3 &= (x+1)(x+1)(x+1) \\
&= (x+1)(x^2 + 2x + 1) \\
&= x^3 + 3x^2 + 3x + 1\\
123&2\\
2&789\\
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%以&为中心排列
% An ampersand & separates the left column (before the =) from theright column (after the %=).
% A double backslash \ \ starts a new line.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{align*}
%...
\ldots
%公式和希腊字母的表达方式:
$F_n = F_{n-1}+F_{n-2}$
$\mu = A e^{Q/RT}$
$\Omega = \sum_{k=1}^{n} \omega_k $
\begin{equation}%\pm 是±,frac是分数
x=\frac{-b \pm\sqrt{b^2-4ac} }{2a}
\end{equation}
$\Omega \omega \mu \lambda \sigma \beta$
%%其实这些希腊字母不用记,在Texstudio侧边栏里面都有啦
运行结果:
以上!就是Part_1的全部学习内容啦~