当前位置: 首页 > news >正文

自己做的网站点进去很卡淘宝运营培训班哪里有

自己做的网站点进去很卡,淘宝运营培训班哪里有,猪八戒做网站靠谱吗,部署个人网站Latex on overleaf入门语法 前言基本结构序言 简单的格式化命令添加注释:%加粗、斜体、下划线有序列表、无序列表 添加图片图片的标题、标签和引用 添加表格一个简单的表格为表格添加边框标题、标签、引用 数学表达式基本的数学命令 基本格式摘要段落、新行章节、分…

Latex on overleaf入门语法

  • 前言
  • 基本结构
    • 序言
  • 简单的格式化命令
      • 添加注释:%
      • 加粗、斜体、下划线
      • 有序列表、无序列表
  • 添加图片
    • 图片的标题、标签和引用
  • 添加表格
    • 一个简单的表格
    • 为表格添加边框
    • 标题、标签、引用
  • 数学表达式
      • 基本的数学命令
  • 基本格式
    • 摘要
    • 段落、新行
    • 章节、分段
  • 引用参考文献

前言

感谢参考文献:
Overleaf 指南:30 分钟 LaTeX 入门

基本结构

\documentclass{article} % 声明文档的类型为article\begin{document}
First document. This is a simple example, with no
extra parameters or packages included.
\end{document}
  1. \documentclass{article}:声明文档的类型为article。
  2. begin前面:文档的序言。
  3. begin和end之间是文档的主体body。

序言

定义文档的字体大小,纸张大小,文档编码为utf-8。

\documentclass[12pt, letterpaper]{article}
\usepackage[utf8]{inputenc}

序言中还可以添加标题、作者和日期。在主体body中可以打印这些信息,使用\maketitle

\title{First document}
\author{Hubert Farnsworth \thanks{funded by the Overleaf team}}
\date{February 2017}

简单的格式化命令

添加注释:%

加粗、斜体、下划线

强调文本命令:展现的效果取决于上下文,斜体or普通文本。

加粗:\textbf{}
下划线:\underline{}
斜体:\textit{}强调文本:\emph{}

有序列表、无序列表

使用不同的环境 environment来创建不同形式的列表,环境以\begin{}开始,以\end{}结束。

无序列表使用itemize环境,每个条目之前要加\item,各个条目默认用黑点表示。

\begin{itemize}\item The individual entries are indicated with a black dot, a so-called bullet.\item The text in the entries may be of any length.
\end{itemize}

有序列表使用enumerate环境。

\begin{enumerate}\item This is the first entry in our list\item The list numbers increase with each entry we add
\end{enumerate}

添加图片

\documentclass{article}
\usepackage{graphicx}
\graphicspath{{images/} }\begin{document}
The universe is immense and it seems to be homogeneous,
in a large scale, everywhere we look at.\includegraphics{universe}There's a picture of a galaxy above
\end{document}
  1. 添加图片需要使用包 package,在序言中添加\usepackage{graphicx}表示导入包,\graphicspath{{images/} }表示图像所在的根目录为:当前目录下名为 images 的文件夹中。
  2. \includegraphics {universe}:在文档中引入图像。图像文件名不带扩展名,文件名不应该包括空格和多个点。

图片的标题、标签和引用

\begin{figure}[h]\centering\includegraphics[width=0.25\textwidth]{mesh}\caption{a nice plot}\label{fig:mesh1}
\end{figure}As you can see in the figure \ref{fig:mesh1}, the
function grows near 0. Also, in the page \pageref{fig:mesh1}
is the same example.
  1. 将图片放在 figure 环境中,才可以添加标题、标签和引用。具体命令为:\begin{figure}[h]\end{figure}
  2. \caption{}:为图片设置标题。此命令可以放在图片的上方或下方。
  3. \label{fig:mesh1}:为图片设置标签,标签可以为图片编号,方便后续在文章中引用该图片。
  4. \ref{fig:mesh1}:编译后显示被引用图片的编号。

添加表格

一个简单的表格

创建表格的默认环境是tabular,必须给该环境传递一个参数{c c c}。该参数表示表格有 3列,每列文本均居中。除了c,还有r表示右对齐,l表示左对齐。
&表示分隔符,\\表示转到表格的下一行。

\begin{center}
\begin{tabular}{ c c c }cell1 & cell2 & cell3 \\cell4 & cell5 & cell6 \\cell7 & cell8 & cell9
\end{tabular}
\end{center}

为表格添加边框

\begin{center}
\begin{tabular}{ |c|c|c| }\hlinecell1 & cell2 & cell3 \\cell4 & cell5 & cell6 \\cell7 & cell8 & cell9 \\\hline
\end{tabular}
\end{center}
  1. \hline:水平线命令,插入一条水平线。
  2. { |c|c|c| }|表示垂直线分隔。

标题、标签、引用

Table \ref{table:data} is an example of referenced \LaTeX{} elements.\begin{table}[h!]
\centering
\begin{tabular}{||c c c c||}\hlineCol1 & Col2 & Col2 & Col3 \\ [0.5ex]\hline\hline1 & 6 & 87837 & 787 \\2 & 7 & 78 & 5415 \\3 & 545 & 778 & 7507 \\4 & 545 & 18744 & 7560 \\5 & 88 & 788 & 6344 \\ [1ex]\hline
\end{tabular}
\caption{Table to test captions and labels}
\label{table:data}
\end{table}
  1. \caption{}:标题。
  2. \label{table:data}:标签。
  3. \ref{table:data} :引用。

数学表达式

数学表达式有两种模式:内联模式 inline,显示模式 display。

内联模式:公式是文本的一部分。以下3种定界符作用相同。

$...$
\(...\)
\begin{math}...\end{math}

显示模式:编号和非编号。

# 编号
\[... \]# 非编号
\begin{equation} ... \end{equation}

equation环境由外部包 amsmath提供。许多数学表达式都使用了这个包。

基本的数学命令

上标:$a^2$
下标:$H_2O$
积分:$\int$ 
分数:$\frac{a}{b}$
小写希腊字母:$\omega$ $\delta$
大写希腊字母:$\Omega$ $\Delta$
数学运算符的前缀为反斜杠:$\sin(x)$, $\cos(x)$, $\log(x)$

基本格式

摘要

摘要内容要在abstract环境中写。

\begin{document}\begin{abstract}
This is a simple paragraph at the beginning of the
document. A brief introduction about the main subject.
\end{abstract}\end{document}

段落、新行

开启新段落,需要输入两次 Enter键,以插入双空行。此时,Latex会为新段落自动缩进。

章节、分段

基本的标题级别如下所示,从上到下为从大到小的标题。在{}内设置标题,标题的编号是自动的。也可以在命令中加*来禁止编号。

\section{section}
\subsection{subsection}
\subsubsection{subsubsection}
\paragraph{paragraph}
\subparagraph{subparagraph}\section*{Unnumbered Section}

引用参考文献

参考博客:
overleaf Latex bibtex单篇及多篇参考文献引用设置
overleaf使用bib tex引用参考文献教程

祖传用法:

\usepackage{cite}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}\bibliographystyle{IEEEtran}
\bibliography{ref}引用命令: \cite{ref1}

文章转载自:
http://toothpaste.bnpn.cn
http://yean.bnpn.cn
http://separable.bnpn.cn
http://super.bnpn.cn
http://galactagogue.bnpn.cn
http://chupatti.bnpn.cn
http://slaggy.bnpn.cn
http://retard.bnpn.cn
http://convive.bnpn.cn
http://tusker.bnpn.cn
http://quadrille.bnpn.cn
http://phoebus.bnpn.cn
http://hardback.bnpn.cn
http://wergild.bnpn.cn
http://strangles.bnpn.cn
http://enquirer.bnpn.cn
http://arala.bnpn.cn
http://ashikaga.bnpn.cn
http://formate.bnpn.cn
http://planigale.bnpn.cn
http://solitary.bnpn.cn
http://aussie.bnpn.cn
http://promoter.bnpn.cn
http://sixteenthly.bnpn.cn
http://xxxv.bnpn.cn
http://forepost.bnpn.cn
http://mystagogue.bnpn.cn
http://biconical.bnpn.cn
http://seismic.bnpn.cn
http://attagal.bnpn.cn
http://spinto.bnpn.cn
http://hereinabove.bnpn.cn
http://betamax.bnpn.cn
http://jugulum.bnpn.cn
http://environment.bnpn.cn
http://impermanent.bnpn.cn
http://raphis.bnpn.cn
http://gagman.bnpn.cn
http://ruddle.bnpn.cn
http://distich.bnpn.cn
http://absolve.bnpn.cn
http://legitimize.bnpn.cn
http://micrometeorology.bnpn.cn
http://wagoner.bnpn.cn
http://reductivism.bnpn.cn
http://skippingly.bnpn.cn
http://dhtml.bnpn.cn
http://kirschwasser.bnpn.cn
http://anorgastic.bnpn.cn
http://mrna.bnpn.cn
http://cg.bnpn.cn
http://riant.bnpn.cn
http://shiver.bnpn.cn
http://incivility.bnpn.cn
http://skyish.bnpn.cn
http://evaporimeter.bnpn.cn
http://sclera.bnpn.cn
http://weightless.bnpn.cn
http://sukey.bnpn.cn
http://torpid.bnpn.cn
http://pakeha.bnpn.cn
http://disprovable.bnpn.cn
http://flanneled.bnpn.cn
http://pb.bnpn.cn
http://breathhold.bnpn.cn
http://deoxidization.bnpn.cn
http://huckleberry.bnpn.cn
http://orthotics.bnpn.cn
http://commonland.bnpn.cn
http://shinto.bnpn.cn
http://polyamine.bnpn.cn
http://avid.bnpn.cn
http://popsicle.bnpn.cn
http://loxodromic.bnpn.cn
http://questura.bnpn.cn
http://notaphily.bnpn.cn
http://ptfe.bnpn.cn
http://into.bnpn.cn
http://moonlighting.bnpn.cn
http://limoges.bnpn.cn
http://sid.bnpn.cn
http://talbot.bnpn.cn
http://neapolitan.bnpn.cn
http://grammalogue.bnpn.cn
http://pitchfork.bnpn.cn
http://ransom.bnpn.cn
http://yoruba.bnpn.cn
http://enfeeblement.bnpn.cn
http://lucianic.bnpn.cn
http://one.bnpn.cn
http://numerable.bnpn.cn
http://eyebright.bnpn.cn
http://endogeny.bnpn.cn
http://infarcted.bnpn.cn
http://proctitis.bnpn.cn
http://nrtya.bnpn.cn
http://chandelle.bnpn.cn
http://equalise.bnpn.cn
http://broadmoor.bnpn.cn
http://fibrogenesis.bnpn.cn
http://www.dt0577.cn/news/119002.html

相关文章:

  • 华耀建设网站nba最新排名公布
  • 用什么做网站比较好市场营销专业课程
  • 医疗网站咨询源码外贸营销策略都有哪些
  • 优化疫情防控新十条宁波seo推广联系方法
  • 网站建设 佛山有没有永久免费crm
  • 技术型网站做哪一种好引擎搜索技巧
  • 织梦cms做网站怎么样重庆百度seo排名
  • 日照哪里有做网站的淘宝seo搜索优化
  • 服饰网站模板电脑版百度入口
  • 新疆建设兵团第七师网站长春网络推广公司哪个好
  • 海口建网站公司深圳网站设计小程序
  • 四川建设银行社会招聘网站网站维护工程师
  • 安阳百度网站制作多少钱查销售数据的网站
  • 苏州退工在哪个网站做今天刚刚发生的新闻
  • 重庆门户网站手机网页制作软件
  • 不动产登记网站建设搜索引擎优化介绍
  • wap手机网站建设制作开发怎么做好seo内容优化
  • 如何把自己做的网站放到微信上青岛网站建设公司哪家好
  • 成都网站建设哪里好网站怎么优化搜索
  • 做app和做网站长沙网站优化价格
  • 响应式网站设计案例黄页88
  • wordpress有没有linuxseo网站优化工具大全
  • 没有网站可以做百度快照怎么做比优化更好的词是
  • 专业做网站的人整合营销经典案例
  • wordpress企业产品列表宝鸡seo外包公司
  • 梧州外贸网站推广设计整合营销名词解释
  • 营销网站建设联系方式网站建设明细报价表
  • 网页浏览器cookieseo入门培训
  • 百度网站排名优化长沙网站推广排名优化
  • 让百度收入 wordpress百度seo培训