SCNU-my-article
Author
吴梓祺
Last Updated
4 years ago
License
Creative Commons CC BY 4.0
Abstract
这是我用来写华南师范大学本科毕业论文的latex模板
% 完整编译: xelatex -> bibtex -> xelatex -> xelatex
\documentclass[UTF8,AutoFakeBold=1,AutoFakeSlant,zihao=-4]{SCNU}
% 在这里填写你的论文题目
\newcommand{\thesisTitle}{人脸考场签到系统}
\newcommand{\thesisTitleEN}{English Title (not used)}
% 在这里填写你的相关信息
\newcommand{\yourDept}{计算机学院}
\newcommand{\yourMajor}{计算机科学与技术}
\newcommand{\yourName}{吴梓祺}
\newcommand{\yourClass}{2017级4班}
\newcommand{\yourMentor}{单志龙}
\newcommand{\studentID}{202020111222333}
\usepackage{color}
\definecolor{lightgray}{rgb}{.9,.9,.9}
\definecolor{darkgray}{rgb}{.4,.4,.4}
\definecolor{purple}{rgb}{0.65, 0.12, 0.82}
\lstdefinelanguage{JavaScript}{
keywords={typeof, new, true, false, catch, function, return, null, catch, switch, var, if, in, while, do, else, case, break, const},
keywordstyle=\color{blue}\bfseries,
ndkeywords={class, export, boolean, throw, implements, import, this},
ndkeywordstyle=\color{darkgray}\bfseries,
identifierstyle=\color{black},
sensitive=false,
comment=[l]{//},
morecomment=[s]{/*}{*/},
commentstyle=\color{purple}\ttfamily,
stringstyle=\color{red}\ttfamily,
morestring=[b]',
morestring=[b]"
}
\begin{document}
% 封面(自动生成)
\coverpage
% 中文摘要
\begin{abstract}
随着3G时代的来临,移动通信技术正从提供简单的话音业务、
低速数据业务向提供话音业务和可变带宽的多媒体数据业务相结合的方向发展。
天线,作为移动通信无线链路中最重要的部件,也因此成为研究重点,
受到了越来越广泛的关注。
\keywords{数字信号处理;音频信号频谱;MATLAB;FFT;DSP} % 中文关键词
\end{abstract}
% 英文摘要
\begin{abstractEN}
With the coming of the era named ``Third Generation'',
the mobile communication technologies are changing
its direction from providing simple services of voice
and low speed data transmission to providing combination
services of voice and multi-media data transmission with
variable band-width. Antennas, as the most important part
in the radio link of mobile communication, become an
important research topic, and attract more and more attentions.
\keywordsEN{DSP, Spectral Analysis, FFT, MATLAB} % 英文关键词
\end{abstractEN}
% 目录(自动生成)
\contentpage
\section{一级标题}
\subsection{二级标题}
正文……\cite{bib01}正文正文\cite{bib02}正文正文\cite{bib01,bib02}
\subsection{二级标题}
引用图\ref{fig},表\ref{tab},公式\eqref{eq:0}
\subsubsection{图片}
\begin{figure}[ht]
\centering
\includegraphics[scale=0.64]{imgs/突发事件.jpg}
\caption{工科生工作现场} \label{fig}
\end{figure}
\subsubsection{表格}
\begin{table}[ht]
\centering\caption{特征描述}
\begin{tabular}{lll}
\toprule \label{tab}
& 特征描述 & 特征维数 \\ \midrule
平均过零率 & 波形穿过x轴的频率 & 1 \\
平均光谱质心 & 指示声音的“质心” & 1 \\ \bottomrule
\end{tabular}
\end{table}
\subsubsection{公式}
\begin{equation}
loss = - \sum_{i=1}^{n}{y_i\:log(\hat{y_i})} + \label{eq:0}
\lambda {\left\lVert\omega\right\rVert}_2^2
\end{equation}
\subsubsection{代码}
\begin{lstlisting}[language=Python]
import numpy as np
def normalize(x):
mean = np.mean(x)
std = np.std(x, ddof=1)
return (x - mean) / std
\end{lstlisting}
\begin{lstlisting}[language=JavaScript]
var a = 1000;
\end{lstlisting}
% 参考文献(自动生成)
\begin{references}
\bibliography{references.bib}
\end{references}
\section{总结}
这是总结
\nonumsection{附录}
\appendixformat % 作为附录时,使用该命令为图表更新格式
123
\end{document}