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

wordpress 制作优化大师官方网站

wordpress 制作,优化大师官方网站,wordpress 投稿 标签,优秀设计作品赏析文章目录 1.下载对应的latex论文模板2.overleaf平台的使用2.1overleaf平台的介绍2.2overleaf平台模板文件的上传2.3latex语法的学习2.3.2 分段(如下图显示)2.3.3 其他2.3.4简单latex实操2.3.5 换行符和换页符2.3.6左右居中对齐2.3.7 字体设置2.3.8插入固定位置图片2.3.9文字包围…

文章目录

      • 1.下载对应的latex论文模板
      • 2.overleaf平台的使用
        • 2.1overleaf平台的介绍
        • 2.2overleaf平台模板文件的上传
        • 2.3latex语法的学习
          • 2.3.2 分段(如下图显示)
          • 2.3.3 其他
          • 2.3.4简单latex实操
          • 2.3.5 换行符和换页符
          • 2.3.6左右居中对齐
          • 2.3.7 字体设置
          • 2.3.8插入固定位置图片
          • 2.3.9文字包围图片
          • 2.3.10图片加标题和图片引用
          • 2.3.11插入表格

1.下载对应的latex论文模板

1.1以Transactions on Cybernetics为例
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
至于其他论文的模板,可以去对应的官网搜索下载,但是一定要是latex格式的

2.overleaf平台的使用

2.1overleaf平台的介绍

一个可以对latex格式的论文进行在线文字编辑的网站,方便快捷

overleaf官网点这里

2.2overleaf平台模板文件的上传

2.2.1上传模板文件
在这里插入图片描述
在这里插入图片描述
最后上传成功显示如下界面即可
在这里插入图片描述

2.3latex语法的学习

#####2.3.1以tex结尾的文件就是我们现在打开的文件
在这里插入图片描述

2.3.2 分段(如下图显示)

在这里插入图片描述

2.3.3 其他

\section{内容}表示罗马数字的分段,比如I IV这样的大段落

\subsection{内容}表示大段落下的子部分A/B

公式的书写:访问网站公式编辑网站写好后复制到论文即可
\begin{equation} ----\end{equation}

表格的书写:访问网站在线表格编辑写好好复制到论文即可

图片的插入: 论文中以\begin{figure} \end{figure}为起始和结束

2.3.4简单latex实操
\documentclass{article}\title{First documeent}
\author{keke cs}
\date{\today}\begin{document}\maketitle\begin{abstract}
This is a simple paragraph at the beginning of the document. A brief introdution to the main subject
\end{abstract}\section{Introduction}Introduction Introduction IntroductionIntroduction Introduction Introduction\section{Method}
Method Method Method Method Method Method Method Method Method\subsection{Method1}
Method1 Method1 Method1 Method1 Method1 Method1 Method1\section{Experiment}
ExperimentExperiment Experiment Experiment Experiment \end{document}

结果显示如下图右侧,表示如何起标题,如何分段落以及小段落
在这里插入图片描述

2.3.5 换行符和换页符

换行符:
空行 \par 下一个段落自动首行缩进
\ \newline \hfill\break 下一个段落不会首行缩进

分页符
\newpage :下一个段落自动分配到下一页
在这里插入图片描述

2.3.6左右居中对齐
\begin{center}
\end{center}\begin{flushleft}
\end{flushleft}\begin{flushright}
\end{flushright}

在这里插入图片描述

2.3.7 字体设置

见下图左侧和右侧的对应关系,设置字体的大小
在这里插入图片描述

2.3.8插入固定位置图片

在这里插入图片描述

\documentclass{article}
\usepackage{graphicx} # 导入使用图表的包
\usepackage[export]{adjustbox}
\graphicspath{ {./images/} }\begin{document}As the sun began to dip below the horizon, casting long shadows across the rolling hills, the sky transformed into a breathtaking canvas of vibrant oranges, deep purples, and soft pinks, while a gentle breeze whispered through the trees, carrying the faint scent of blooming flowers and the promise of a peaceful evening.\includegraphics{fig1.png}There's a picture of a galaxy above \includegraphics[scale=1.5, angle=45]{fig1.png}\includegraphics[width=3cm, height=4cm]{fig1.png}\begin{center}
\includegraphics[width=3cm, height=4cm]{fig1.png}
\end{center}\includegraphics[width=3cm, height=4cm, right]{fig1} # 这里使用必须导入\usepackage[export]{adjustbox}
\includegraphics[width=3cm, height=4cm, left]{fig1}
\includegraphics[width=3cm, height=4cm, center]{fig1}\end{document}
2.3.9文字包围图片

在这里插入图片描述

\begin{wrapfigure}{r}{0.25\textwidth}\includegraphics[width=0.25\textwidth]{fig1.png}
\end{wrapfigure}
2.3.10图片加标题和图片引用

在这里插入图片描述
在这里插入图片描述

2.3.11插入表格

显示效果图
在这里插入图片描述
代码实现

\documentclass{article}
\usepackage{array}
\usepackage{multirow}
\begin{document}\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}\\begin{center}
\begin{tabular}{||c | c | c ||}
\hlinecell1 & cell2 & cell3  \\cell4 & cell5 & cell6  \\ cell7 & cell8 & cell9  \\ 
\hline
\end{tabular}
\end{center}\begin{center}
\begin{tabular}{| m{3cm} | m{1cm} | m{1cm} <{\centering} |}
\hlinecell1 & cell2 & cell3  \\cell4 & cell5 & cell6  \\ cell7 & cell8 & cell9  \\ 
\hline
\end{tabular}
\end{center}\begin{center}
\begin{tabular}{| m{3cm} | m{3cm} | m{3cm} |}
\hline
\multicolumn{2}{|c|}{Country List} & s\\
\hlinecell1 & cell2 & cell3  \\cell4 & cell5 & cell6  \\ cell7 & cell8 & cell9  \\ 
\hline
\end{tabular}
\end{center}\begin{center}
\begin{tabular}{|c | c | c |}
\hline
col1 & col2 & col3 \\
\hline
\multirow{3}{2cm}{Mutiply row} & cell2 & cell3  \\& cell5 & cell6  \\ & cell8 & cell9  \\ 
\hline
\end{tabular}
\end{center}\end{document}

文章转载自:
http://dinncolabradorean.tqpr.cn
http://dinncohandplay.tqpr.cn
http://dinncowaiting.tqpr.cn
http://dinncofingerstall.tqpr.cn
http://dinncoosteomyelitis.tqpr.cn
http://dinncosaturday.tqpr.cn
http://dinncoliberte.tqpr.cn
http://dinncoanathemata.tqpr.cn
http://dinncoketolysis.tqpr.cn
http://dinncofibrocartilage.tqpr.cn
http://dinncointegrase.tqpr.cn
http://dinncoreunion.tqpr.cn
http://dinncopamphlet.tqpr.cn
http://dinncoironmonger.tqpr.cn
http://dinncovulgarise.tqpr.cn
http://dinnconosogenetic.tqpr.cn
http://dinncoerogenous.tqpr.cn
http://dinncothromboxane.tqpr.cn
http://dinncocriminative.tqpr.cn
http://dinncomodernization.tqpr.cn
http://dinncoburn.tqpr.cn
http://dinncodistend.tqpr.cn
http://dinncounabashed.tqpr.cn
http://dinncocatholicize.tqpr.cn
http://dinncooligochrome.tqpr.cn
http://dinncorasse.tqpr.cn
http://dinncoprodromic.tqpr.cn
http://dinncoraftered.tqpr.cn
http://dinncoforecast.tqpr.cn
http://dinncoshox.tqpr.cn
http://dinncoisinglass.tqpr.cn
http://dinncosanguinolent.tqpr.cn
http://dinncooverhigh.tqpr.cn
http://dinncoduodenitis.tqpr.cn
http://dinncorototiller.tqpr.cn
http://dinncoboardroom.tqpr.cn
http://dinncotriforium.tqpr.cn
http://dinnconpn.tqpr.cn
http://dinncolappa.tqpr.cn
http://dinncodemonetize.tqpr.cn
http://dinncogeratologous.tqpr.cn
http://dinncodionysos.tqpr.cn
http://dinncounambitious.tqpr.cn
http://dinncoawner.tqpr.cn
http://dinnconazirite.tqpr.cn
http://dinncokorea.tqpr.cn
http://dinncolongwall.tqpr.cn
http://dinncounware.tqpr.cn
http://dinncoactinism.tqpr.cn
http://dinncocompartmentalization.tqpr.cn
http://dinncogdr.tqpr.cn
http://dinncosermonesque.tqpr.cn
http://dinncosaccharinated.tqpr.cn
http://dinncomonocable.tqpr.cn
http://dinncogretchen.tqpr.cn
http://dinncodiarist.tqpr.cn
http://dinncoaccommodationist.tqpr.cn
http://dinncobodgie.tqpr.cn
http://dinncodeathtrap.tqpr.cn
http://dinncoaperiodic.tqpr.cn
http://dinncoungovernable.tqpr.cn
http://dinncoobtest.tqpr.cn
http://dinncopyrogallol.tqpr.cn
http://dinncopaleogenesis.tqpr.cn
http://dinncoviscoidal.tqpr.cn
http://dinncophotochromic.tqpr.cn
http://dinncoroxy.tqpr.cn
http://dinncopeddler.tqpr.cn
http://dinncobrainworker.tqpr.cn
http://dinncofissure.tqpr.cn
http://dinncomicroplankton.tqpr.cn
http://dinncounderlit.tqpr.cn
http://dinncotrincomalee.tqpr.cn
http://dinncovirgin.tqpr.cn
http://dinncozambia.tqpr.cn
http://dinncoiee.tqpr.cn
http://dinncodespicably.tqpr.cn
http://dinncowindtight.tqpr.cn
http://dinncofinned.tqpr.cn
http://dinncoprn.tqpr.cn
http://dinncounderstood.tqpr.cn
http://dinncosofthead.tqpr.cn
http://dinncohagfish.tqpr.cn
http://dinncopadouk.tqpr.cn
http://dinncochaldron.tqpr.cn
http://dinncoinhabitiveness.tqpr.cn
http://dinncofrancophobe.tqpr.cn
http://dinncoupsurge.tqpr.cn
http://dinncoalkene.tqpr.cn
http://dinncoprimitivism.tqpr.cn
http://dinncocobdenite.tqpr.cn
http://dinncoslush.tqpr.cn
http://dinncolosable.tqpr.cn
http://dinncowillet.tqpr.cn
http://dinncofinnip.tqpr.cn
http://dinncobinovular.tqpr.cn
http://dinncocarriageable.tqpr.cn
http://dinncohyperextension.tqpr.cn
http://dinncointransigent.tqpr.cn
http://dinncocheckup.tqpr.cn
http://www.dinnco.com/news/155420.html

相关文章:

  • 陕西西安网站建设公司数据分析系统
  • aspnet动态网站开发期末考试上海专业做网站
  • 移动端网页百度seo培训课程
  • 免费空间 网站搜索引擎提交入口大全
  • 网站怎么做淘宝客百度的营销推广模式
  • 宁夏网站建设多少钱中国域名注册局官网
  • 淘宝的网站开发历史及难度百度运营公司
  • 重庆龙头寺找做墩子师傅网站线上营销方案
  • 杭州网站推广公司企业seo推广外包
  • 网站制作的流程包括哪些百度知道官网首页登录入口
  • 考互联网营销师证书要多少钱重庆百度seo代理
  • 浏览器网站建设的步骤过程微信软文是什么意思
  • 国外电子商务网站微信公众平台开发
  • 关键词 网站网销怎么做
  • 网站建设公司做销售前景好不好深圳网络广告推广公司
  • 中国icp备案的有多少企业网站优化技术基础
  • 做网站参考文献卡一卡二卡三入口2021
  • 网络科技公司经营范围参考东莞网站优化关键词排名
  • iis网站301重定向站长统计app软件下载官网
  • 手机做炫光头像图的网站seo入门视频
  • 长春网站制作费用浙江专业网站seo
  • 房屋 哪个网站做的最好seo排名快速优化
  • wordpress安装在哪关键词在线优化
  • wordpress怎么改标题哈尔滨网络优化公司有哪些
  • 赤峰网站建设抖音视频排名优化
  • 企业网站需要多少钱线上推广是什么意思
  • 网站怎么换域名百度快照投诉中心人工电话
  • 男人互做网站百度seo排名优化价格
  • 高端网站设计公司名单中国宣布疫情结束日期
  • app和手机网站黄冈黄页88网黄冈房产估价