Skip to content

Commit

Permalink
论文整体部分大致完成。
Browse files Browse the repository at this point in the history
  • Loading branch information
huanghao7414 committed Apr 23, 2024
1 parent 01311ca commit 77347fe
Show file tree
Hide file tree
Showing 37 changed files with 2,214 additions and 170 deletions.
113 changes: 10 additions & 103 deletions body/graduate/content.tex
Original file line number Diff line number Diff line change
@@ -1,103 +1,10 @@
\chapter{关于本模板}

本模板根据浙江大学研究生院编写的《浙江大学研究生学位论文编写规则》~\cite{zjugradthesisrules},
在原有的 zjuthesis 模板~\cite{zjuthesis}基础上开发而来。

本模板的本科生版本\cite{zjuthesisrules}得到了浙江大学本科生院老师的支持与审核,
已经在本科生院网上公示。
但当前的研究生版本并未经过研究生院老师的审核,
同学们使用时要注意对照模板与要求,
切不可盲目使用。

作者本人并未编写过浙江大学研究生毕业论文,
所以不清楚具体要求。
如果有热心同学愿意帮忙,
可以替我联系相关老师,我会配合审核并修改代码。

\section{Overleaf 使用注意事项}

如果你在Overleaf上编译本模板,请注意如下事项:

\begin{itemize}
\item 删除根目录的 ``.latexmkrc'' 文件,否则编译失败且不报任何错误
\item 字体有版权所以本模板不能附带字体,请务必手动上传字体文件,并在各个专业模板下手动指定字体。
具体方法参照 GitHub 主页的说明。
\item 当前的Overleaf默认使用TexLive 2017进行编译,但一些伪粗体复制乱码的问题需要TexLive 2019版本来解决。
所以各位同学可以在Overleaf上编写论文时务必切换到TexLive 2019或更新版本来编译,以免产生查重相关问题。
具体说明参照 GitHub 主页。
\end{itemize}


\section{节标题}

我们可以用includegraphics来插入现有的jpg等格式的图片,
\autoref{fig:zju-logo}所示。

\begin{figure}[htbp]
\centering
\includegraphics[width=.3\linewidth]{logo/zju}
\caption{\label{fig:zju-logo}浙江大学LOGO}
\end{figure}


\subsection{小节标题}


\par\autoref{tab:sample}所示,这是一张自动调节列宽的表格。

\begin{table}[htbp]
\caption{\label{tab:sample}自动调节列宽的表格}
\begin{tabularx}{\linewidth}{c|X<{\centering}}
\hline
第一列 & 第二列 \\ \hline
xxx & xxx \\ \hline
xxx & xxx \\ \hline
xxx & xxx \\ \hline
\end{tabularx}
\end{table}


\par\autoref{equ:sample},这是一个公式

\begin{equation}
\label{equ:sample}
A=\overbrace{(a+b+c)+\underbrace{i(d+e+f)}_{\text{虚数}}}^{\text{复数}}
\end{equation}

\chapter{另一章}


\begin{figure}[htbp]
\centering
\includegraphics[width=.3\linewidth]{example-image-a}
\caption{\label{fig:fig-placeholder}图片占位符}
\end{figure}

\chapter{再一章}

\par\autoref{alg:sample},这是一个算法

\begin{algorithm}[H]
\begin{algorithmic} % enter the algorithmic environment
\REQUIRE $n \geq 0 \vee x \neq 0$
\ENSURE $y = x^n$
\STATE $y \Leftarrow 1$
\IF{$n < 0$}
\STATE $X \Leftarrow 1 / x$
\STATE $N \Leftarrow -n$
\ELSE
\STATE $X \Leftarrow x$
\STATE $N \Leftarrow n$
\ENDIF
\WHILE{$N \neq 0$}
\IF{$N$ is even}
\STATE $X \Leftarrow X \times X$
\STATE $N \Leftarrow N / 2$
\ELSE[$N$ is odd]
\STATE $y \Leftarrow y \times X$
\STATE $N \Leftarrow N - 1$
\ENDIF
\ENDWHILE
\end{algorithmic}
\caption{\label{alg:sample}算法样例}
\end{algorithm}
\chapter{绪论}
\input{body/主体内容/1绪论部分}
\chapter{研究区域与数据处理}
\input{body/主体内容/2研究区域与数据处理}
\chapter{基于机器学习算法的\texorpdfstring{$p\rm CO_2$}{}反演模型建立与分析}
\input{body/主体内容/3基于机器学习算法的pCO2反演模型建立与分析}
\chapter{南大洋\texorpdfstring{$p\rm CO_2$}{}和碳汇的时空变化}
\input{body/主体内容/4南大洋碳汇变化}
\chapter{结论与展望}
\input{body/主体内容/5结论与展望}
Loading

0 comments on commit 77347fe

Please sign in to comment.