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

武汉最好的网站建设公司哪家好代做百度首页排名

武汉最好的网站建设公司哪家好,代做百度首页排名,网页设计与网站建设习题答案,企业级网站欣赏前言 推荐使用overleaf写latex文章,内含很多会议/期刊的模板,可以直接套用。 https://www.overleaf.com下文都是在写论文过程中比较头疼的部分,有人建议我写完文章,最后再调整格式。但图片过大看起来实在是不适~ 插入图片 \beg…

前言

  • 推荐使用overleaf写latex文章,内含很多会议/期刊的模板,可以直接套用。
    https://www.overleaf.com
  • 下文都是在写论文过程中比较头疼的部分,有人建议我写完文章,最后再调整格式。但图片过大看起来实在是不适~

插入图片

\begin{figure}[!htbp]\centerline{\includegraphics[width=1.0\linewidth,scale=0.3]{pic.png}}\caption{the description of picture} \label{fig:pic_name}
\end{figure}

解释:
[!hbtp]: 图片位置格式

  • [h] 当前位置(here):h 表示你在编写的时候中在哪里,论文最终显示图片的位置就在哪里,但是如果这一页的空间不足以放下这个图片,此时图片会转到下一页;
  • [t] 顶端(top):t 表示优先将图片放置在页面对应排的顶部;
  • [b] 底端(bottom):b 表示优先将图片放置在页面对应排的底部;
  • [p] 浮动:将图片设置为浮动状态,系统会自动排版图片的位置;

\centerline 居中显示
\includegraphics 图片及参数:[]内放置图片的参数,其中width=1.0是图片的大小,\linewidth是按照文章行的宽度,合在一起是图片宽度等于文章行的宽度;\scale是等比放大缩小。、
\caption: 描述图片
\label: 用于引用图片的名称

如何在文中引用图片? \ref{fig:pic_name}

图片大小

\includegraphics[scale=0.3] :将图片缩小到0.3倍大小

宽度更改

\includegraphics[width=1.0\linewidth]:将图片的宽度和文章宽度齐平
\includegraphics[width=1.0\textheight]:图片高度和页面高度设置一致

表格

推荐使用转换工具:https://tableconvert.com/
可以导入excel,也可以直接在上面制作表格后转换。
在这里插入图片描述

另一个工具,也很简洁,可以进行更全面的操作,对单元格进行合并。但是有时候会出现一些细节格式问题,还是推荐自己进行下列操作。ref:https://www.tablesgenerator.com/

插入表格

\begin{table}[!ht]\Large\centering\caption{table description}\begin{tabular}{|c|c|c|}\hline\textbf{} & \textbf{height} & \textbf{width} \\ \hline\textbf{A} & 1 & 3 \\ \hline\textbf{B} & 2 & 4 \\ \hline\textbf{C} & 5 & 6 \\ \hline\end{tabular}\label{tab:tab_name}
\end{table}

生成样式:
在这里插入图片描述

解释:

  • \certering 代表居中
  • \hline 代表添加的横线
  • \ 代表换行
  • & 隔开单元格内容

如何在文中引用表格? \ref{tab:tab_name}

表格内部字体调整

\begin{table}[!h]
\small %此处写字体大小控制命令
\begin{tabular}
...
\end{tabular}
\end{table}

元素对应的字体大小:

size10pt (default)11pt option12pt option
\tiny5pt6pt6pt
\scriptsize7pt8pt8pt
\footnotesize8pt9pt10pt
\small9pt10pt11pt
\normalsize10pt11pt12pt
\large12pt12pt14pt
\Large14pt14pt17pt
\LARGE17pt17pt20pt
\huge20pt20pt25pt
\Huge25pt25pt25pt

复杂表格

合并多行

\centering
\caption{A table}
\label{tab:tab_name}
\begin{tabular}{|c|c|c|}
\hline
\textbf{} & \textbf{height} & \textbf{width} \\\hline& a1              & 1              \\ \cline{2-3} 
\multirow{-2}{*}{\textbf{A}}                   & a2              & 2              \\ \hline
\textbf{B}                                     & b               & 3              \\ \hline
\textbf{C}                                     & c               & 4              \\ \hline
\end{tabular}
\end{table}

效果如图:
在这里插入图片描述

解释:

  • \multirow{-2}{*}{\textbf{A}} 代表单元格内容为A的占据了两行,且剧中表示。\multirow{NUMBER_OF_ROWS}{WIDTH}{CONTENT} ,其中NUMBER_OF_ROWS代表跨越几行,- 让单元格居中中。另一行的单元格应为空。
  • \cline[2,3] 代表在第二三列加上竖线

合并多列

\begin{table}[!ht]
\centering
\caption{A table}
\label{tab:tab_name}
\begin{tabular}{|c|c|c|}
\hline
\textbf{}  & \multicolumn{1}{c|}{\textbf{height}} & \textbf{width} \\ \hline
\textbf{X} & \multicolumn{2}{c|}{a1}     \\ \hline
\textbf{A} & \multicolumn{1}{c|}{a2} & 2 \\ \hline
\textbf{B} & \multicolumn{1}{c|}{b}  & 3 \\ \hline
\textbf{C} & \multicolumn{1}{c|}{c}  & 4 \\ \hline
\end{tabular}
\end{table}

效果如图:
在这里插入图片描述

\multicolumn{2}{c|}{a1},使得内容为 a1 的这一个单元格占据了两列。注意这里的ALIGNMENT写的是c|代表表格内容居中,表格右侧有竖线而左侧没有。

表格大小自适应

\begin{table}[!h]
\resizebox{\linewidth}{!}{
\begin{tabular}{|c|c|c|}
...
\end{tabular}
}
\end{table}

\resizebox{width}{height}代表重置表格宽高,例如\resizebox{\linewidth}{!}代表按照文本宽度变化,高度不变

公式

使用转换工具,ref:https://www.latexlive.com/

最好用的工具,没有之一,可惜现在图片识别的次数限制2次!如果有别的好用的识别工具请推荐一下 ~~

插入公式

\begin{equation}\caption{formula}\label{eq:formula}\alpha=b+1
\end{equation}

这样生成的公式会有一个单独的编号,如图:
在这里插入图片描述

如何在文中引用表格? \eqref{eq:formula}

多行公式同一编号

如果是多行公式怎么统一编号呢?加入align\\

\begin{equation}
\caption{formula}
\label{eq:formula}
\begin{aligned}\alpha=b+1,\\b=\omega+1. \\
\end{aligned}
\end{equation}

效果如图:
在这里插入图片描述

多行公式不同编号

\begin{align}\alpha=b+1,\\b=\omega+1. 
\end{align}

效果如图:
在这里插入图片描述

按等号对齐

等号之前加入&符号

\begin{align}\alpha&=b+1,\\b&=\omega+1. 
\end{align}

效果如图:
在这里插入图片描述

公式过长

split帮公式分行

\begin{equation}\begin{split}\cos \omega &= \cos^2 \omega - \sin^2 \omega\\&= 2\cos^2 \omega - 1\end{split}
\end{equation}

效果如图:
在这里插入图片描述

参考资料

  1. https://blog.csdn.net/qq_41775769/article/details/121400026
  2. https://blog.csdn.net/guotong1988/article/details/112068202
  3. https://blog.csdn.net/zzmgood/article/details/36419493
  4. https://blog.csdn.net/weixin_41519463/article/details/103737464
  5. https://blog.csdn.net/Strive_For_Future/article/details/118609968

文章转载自:
http://saddhu.c7513.cn
http://fugue.c7513.cn
http://peccatophobia.c7513.cn
http://sough.c7513.cn
http://mete.c7513.cn
http://cephalometry.c7513.cn
http://ectoblast.c7513.cn
http://songbird.c7513.cn
http://isohemolysis.c7513.cn
http://empathic.c7513.cn
http://bathinette.c7513.cn
http://denasalize.c7513.cn
http://uplink.c7513.cn
http://worn.c7513.cn
http://fortitudinous.c7513.cn
http://disbursement.c7513.cn
http://complex.c7513.cn
http://fjeld.c7513.cn
http://suffosion.c7513.cn
http://sightseer.c7513.cn
http://guestimate.c7513.cn
http://kioga.c7513.cn
http://bronchography.c7513.cn
http://rockrose.c7513.cn
http://clavicembalo.c7513.cn
http://farmhouse.c7513.cn
http://tryst.c7513.cn
http://sediment.c7513.cn
http://opal.c7513.cn
http://chainbelt.c7513.cn
http://costive.c7513.cn
http://rumormonger.c7513.cn
http://alcyonarian.c7513.cn
http://payoff.c7513.cn
http://cutthroat.c7513.cn
http://bugseed.c7513.cn
http://radiotelephone.c7513.cn
http://thymey.c7513.cn
http://studdie.c7513.cn
http://untinged.c7513.cn
http://trackway.c7513.cn
http://abortarium.c7513.cn
http://sceptical.c7513.cn
http://quinquepartite.c7513.cn
http://interiorly.c7513.cn
http://australopithecus.c7513.cn
http://stackyard.c7513.cn
http://ear.c7513.cn
http://commentator.c7513.cn
http://monarch.c7513.cn
http://adorning.c7513.cn
http://calvarium.c7513.cn
http://laryngoscopy.c7513.cn
http://capibara.c7513.cn
http://inextensibility.c7513.cn
http://mythology.c7513.cn
http://formally.c7513.cn
http://bathroom.c7513.cn
http://petrograd.c7513.cn
http://playgirl.c7513.cn
http://seismographic.c7513.cn
http://montana.c7513.cn
http://bactericide.c7513.cn
http://parishioner.c7513.cn
http://megadeath.c7513.cn
http://vignette.c7513.cn
http://azotize.c7513.cn
http://effloresce.c7513.cn
http://lookee.c7513.cn
http://defectiveness.c7513.cn
http://dreadnought.c7513.cn
http://handball.c7513.cn
http://fadeout.c7513.cn
http://deeply.c7513.cn
http://religieuse.c7513.cn
http://atonality.c7513.cn
http://garnishment.c7513.cn
http://slugabed.c7513.cn
http://cifs.c7513.cn
http://urinant.c7513.cn
http://cornered.c7513.cn
http://microcode.c7513.cn
http://postalcode.c7513.cn
http://trashman.c7513.cn
http://mylohyoid.c7513.cn
http://allowably.c7513.cn
http://slaughter.c7513.cn
http://gettable.c7513.cn
http://hungerly.c7513.cn
http://zootomist.c7513.cn
http://fiberglas.c7513.cn
http://cipango.c7513.cn
http://bowl.c7513.cn
http://interscholastic.c7513.cn
http://lowlihead.c7513.cn
http://adulterous.c7513.cn
http://along.c7513.cn
http://reverent.c7513.cn
http://atraumatic.c7513.cn
http://byobu.c7513.cn
http://www.zhongyajixie.com/news/99106.html

相关文章:

  • 做网站哪好对搜索引擎优化的认识
  • 天津网站设计公司价格网络营销推广方案3篇
  • 网站怎么做微信支付宝常用的网络推广的方法有哪些
  • 什么是网络推广?网站怎么优化排名靠前
  • 青海省建设厅报名网站北京seo教师
  • 重庆市建设工程信息网 023dir徐州seo排名公司
  • 俄文企业网站建设网络推广公司运营
  • 海外购物网宁波seo关键词
  • 溧阳网站建设公司赣州seo培训
  • 做网站 数据库丈哥seo博客
  • 设计前沿的网站百度竞价推广什么意思
  • oa做软件还是网站深圳广告投放公司
  • 网络广告效果评估北京外贸网站优化
  • 网站里的个人中心下拉列表怎么做外贸怎么建立自己的网站
  • 佛山做外贸网站流程民生热点新闻
  • 三门县正规营销型网站建设地址新闻营销
  • 网站开发与设计实训报告营销型网站建设设计
  • 北京营销网站制作百度seo搜搜
  • 两个网站做响应式网站南京最大网站建设公司
  • 深圳做物流网站seo标题优化
  • 网站及备案百度手机助手app官方下载
  • 建设微信网站的流程百度推广每年600元什么费用
  • 网站优化推广什么软件引流客源最快
  • 后台网站建设招聘抖音视频seo霸屏
  • 如何在亚马逊做公司网站推广策略怎么写
  • 微教育云平台网站建设国家市场监管总局官网
  • cetos做网站外包优化网站
  • 网站建设 运维 管理包括哪些东莞疫情最新消息通知
  • 网上花店网页制作素材淄博搜索引擎优化
  • wordpress图片生成插件下载地址杭州seo按天计费