@@ -16,7 +16,7 @@ \subsection{公式及术语表}
1616
1717为方便,可用 \href {https://www.latexlive.com/}{latexlive.com} 等网站\textbf {在线编辑 }公式,或用 \href {https://mathpix.com/snipping-tool}{Mathpix Snipping Tool} 等\textbf {从图片转换 }。一般的\LaTeX {}编辑器如 TeXstudio 也都会提供语法补全。
1818
19- {\bf {实例1:}} 以下是L-B非稳态流动升力模型,公式引用为\autoref  {eqn:LBmodel }。该公式的术语列表见\autoref  {tab:LB-parameters }。
19+ {\bf {实例1:}} 以下是L-B非稳态流动升力模型,公式引用为\cref  {eqn:LBmodel }。该公式的术语列表见\cref  {tab:LB-parameters }。
2020\begin {equation }
2121  \label {eqn:LBmodel } 
2222  C_{L} = C_{L0} + C_{L \alpha } \left ( \frac {1+\sqrt {X}}{2} \right ) \alpha  
@@ -81,7 +81,7 @@ \subsection{定理环境}
8181  卷绕数是一个整数,它描述了曲线$ \gamma $  绕过点$ a_k$  的次数。如果$ \gamma $  依逆时针方向绕着$ a_k$  移动,卷绕数就是一个正数,
8282  如果$ \gamma $  根本不绕过$ a_k$  ,卷绕数就是零。
8383
84-   \autoref  {thm:res }的证明。
84+   \cref  {thm:res }  的证明。
8585
8686  \begin {proof }
8787    首先,由……
@@ -124,7 +124,7 @@ \subsection{支持的图片格式}
124124
125125在学位论文中,插图地使用简单地分为两类:单列图片和多列图片。图片的格式包含*.jpg、*.eps、*.pdf,既可以是位图也可以是矢量图,在插入图片时可以定义其高度和宽度。
126126
127- 最基本的图片插入示例可见\autoref  {fig:diagram },其代码如\autoref  { demo-figure1 }所示。
127+ 最基本的图片插入示例可见\cref  {fig:diagram },其代码如\cref  { raw: demo-figure1 }  所示。
128128
129129其中\verb +\centering +表示图片居中,\verb +\includegraphics[…]{…} +导入图片并指定图片大小,\verb +\caption{} +指定图片标题,而\verb +\label{…} +为图片加上引用标签。
130130
@@ -134,15 +134,15 @@ \subsection{支持的图片格式}
134134 \caption {单张图片插入的基本示例}\label {fig:diagram }
135135\end {figure }
136136
137- \ begin{lstlisting} [language={[LaTeX]TeX}, caption={示例插图代码}, label=demo-figure1]
137+ \ begin{lstlisting} [language={[LaTeX]TeX}, caption={示例插图代码}, label=raw: demo-figure1]
138138\begin{figure}
139139 \centering
140140 \includegraphics[width=0.75\textwidth]{example-image}
141141 \caption{单张图片插入的基本示例}\label{fig:diagram}
142142\end{figure}
143143\end {lstlisting }
144144
145- 插入两幅图片的例子如\autoref  {fig:png-jpg }所示。
145+ 插入两幅图片的例子如\cref  {fig:png-jpg }  所示。
146146这两个水平并列放置的图共享一个“图标题”(table caption),没有各自的小标题。
147147
148148\begin {figure }
@@ -170,7 +170,7 @@ \subsection{支持的图片格式}
170170\subsection {长标题的换行 }
171171\label {sec:longcaption }
172172
173- \autoref  {fig:longcaptionbad }和 \autoref {fig:longcaptiongood }的标题都比较长。对比可发现\autoref  {fig:longcaptiongood }的标题换行效果更好一些,
173+ \cref  {fig:longcaptionbad } 和 \cref {fig:longcaptiongood }  的标题都比较长。对比可发现\cref  {fig:longcaptiongood }  的标题换行效果更好一些,
174174它使用了minipage环境来限制整个浮动体的宽度。
175175
176176不过在实际使用中,你可以根据排版的整体效果来自行决定。
@@ -216,11 +216,11 @@ \section{表格的例子}
216216
217217表格的定义和引用就不多做介绍,表格内容包含在 \verb +\begin{table} + 和 \verb +\end{table} + 之间。这里给出一些表格的例子。
218218
219- \textbf {\href {https://www.tablesgenerator.com/}{Tables Generator}可以用于在线生成表格 }
219+ \textbf {\href {https://www.tablesgenerator.com/}{Tables Generator}  可以用于在线生成表格 }
220220
221- 先以模板示例中第一章的\autoref  {tab:category }为例,插入代码为\autoref  { demo-table1 }所示。
221+ 先以模板示例中第一章的\cref  {tab:category }  为例,插入代码为\cref  { raw: demo-table1 }  所示。
222222
223- \ begin{lstlisting} [language={[LaTeX]TeX}, caption={示例插表代码}, label=demo-table1]
223+ \ begin{lstlisting} [language={[LaTeX]TeX}, caption={示例插表代码}, label=raw: demo-table1]
224224\begin{table}
225225  \centering
226226  \caption{水系聚氨酯分类} \label{tab:category}
@@ -252,7 +252,7 @@ \section{表格的例子}
252252  \end {tabular* }
253253\end {table }
254254
255- 另举一个两列的表格例子(\autoref  {tab:LB-parameters }以及\autoref  { demo-table2 })。
255+ 另举一个两列的表格例子(\cref  {tab:LB-parameters }  以及\cref  { raw: demo-table2 })。
256256
257257\begin {table }              %  no placement specified: defaults to here, top, bottom, page
258258\centering 
@@ -273,7 +273,7 @@ \section{表格的例子}
273273 \end {center }
274274\end {table }
275275
276- \ begin{lstlisting} [language={[LaTeX]TeX}, caption={插入\autoref {tab:LB-parameters}}, label=demo-table2]
276+ \ begin{lstlisting} [language={[LaTeX]TeX}, caption={插入\cref {tab:LB-parameters}}, label=raw: demo-table2]
277277\begin{table}
278278\centering
279279 \begin{center}
@@ -293,7 +293,7 @@ \section{表格的例子}
293293\end{table}
294294\end {lstlisting }
295295
296- 再给出一些表格的例子,如\autoref  {tab:firstone }、\autoref  { demo-table3 }所示。
296+ 再给出一些表格的例子,如\cref  {tab:firstone }、\cref  { raw: demo-table3 }  所示。
297297
298298\begin {table }
299299  \centering 
@@ -310,7 +310,7 @@ \section{表格的例子}
310310  \end {tabular }
311311\end {table }
312312
313- \ begin{lstlisting} [language={[LaTeX]TeX}, caption={三线表格}, label=demo-table3]
313+ \ begin{lstlisting} [language={[LaTeX]TeX}, caption={三线表格}, label=raw: demo-table3]
314314\begin{table}
315315  \centering
316316  \caption{一个标准的三线表格}
@@ -345,9 +345,9 @@ \subsection{将参考文献的内容与表现分离}
345345.bib数据库中的参考文献条目可以手动编写,也可以在Google的学术搜索中找到。
346346各大数据库也支持将参考文献信息导出为.bib,省时省力。
347347以Google学术搜索为例:在搜索结果中,单击“引用 → BibTeX”链接,
348- 浏览器会打开新的标签页,出现类似\autoref  { googlescholar }所示的内容。
348+ 浏览器会打开新的标签页,出现类似\cref  { raw: googlescholar }  所示的内容。
349349
350- \ begin{lstlisting} [caption={从Google Scholar找到的,但并不规范的.bib条目}, label=googlescholar, float, escapeinside="", numbers=none]
350+ \ begin{lstlisting} [caption={从Google Scholar找到的,但并不规范的.bib条目}, label=raw: googlescholar, float, escapeinside="", numbers=none]
351351@article{张玲2000信用风险评估方法发展趋势,
352352  title={信用风险评估方法发展趋势},
353353  author={张玲 and 张佳林},
0 commit comments