Please refresh the page if equations are not rendered correctly.
---------------------------------------------------------------
- 只使用Bullet list (符号列表) 或 Numbered List(编号列表)组织一个观点或内容的几个方面(每个点一两句话),而不要用于组织段落甚至章节。如果是需要分章节时使用
\chapter{}
、\section{}
、\subsection{}
、\subsubsection{}
或\paragraph{}
。 - 缩进
LaTex对缩进没有特别要求,但是在写方程或引用图片时,依然建议用适当的缩进来对公示代码进行格式化,在变量间添加空格,提高文档的可读性。如下面的公示,罗列几点问题如下:
- 公式为正文内容,顶格开始写
- 前后与正文空一行
- 只有一个公式,且一行就能显示,
\begin{aligned}
环境并没有起到任何作用; - 适当的在变量之间添加空格
修改后如下:
- 插入多张图片
当一个图中有多个子图时,采用subfigure分别插入子图,代码如下:
begin{figure}[hb!]
\centering
\begin{subfigure}{0.5\textwidth}
\includegraphics[trim=0 1cm 19cm 14cm, clip, width=1\linewidth]{resources/SinomaTech/transverse-method-stats.pdf}
\caption{}
\end{subfigure}%
\begin{subfigure}{0.515\textwidth}
\includegraphics[trim=17.5cm 1cm 0.9cm 14cm, clip, width=1\linewidth]{resources/SinomaTech/transverse-method-stats.pdf}
\caption{}
\end{subfigure}
\caption{第一次厚向渗透率国际标准化活动中,26个参与单位获得的不同压实水平下的(a)斜纹织物和(b) NCF无屈曲织物的厚向渗透率。图表上虚线表示有效测试结果的数值范围,上界与下界之间的比值为4 \cite{yong2021out}。}
\label{fig:transverse-benchmark}
\end{figure}
- 段落之间空一行
分段时使用一行空行将两段分割开,不建议使用\par
。同样也是为了提高源文件的可读性。
Comments NOTHING