【TeXstudio】【3】较为完整的论文排版模板与bib文件引用方法
\documentclass{article} %大标题在左边
%\documentclass[UTF8]{ctexart} %大标题在中间
\usepackage{ctex}
\usepackage{xltxtra}
\usepackage{texnames}
\usepackage{mflogo}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{adjustbox}
\usepackage{float}
\usepackage{subfigure}
\usepackage{amsbsy}
\usepackage{algorithm}
\usepackage{indentfirst}
\usepackage{type1cm}
\usepackage{fontspec}
\usepackage{geometry}
\usepackage{fancyhdr}
\usepackage{setspace}
\usepackage{xunicode}
\usepackage{lastpage}
%设置版面风格
\pagestyle{fancy}
%%设置纸张大小
%\geometry{papersize={20cm,15cm}}
%%设置边距
%\geometry{left=5cm,right=5cm,top=5cm,bottom=5cm}
\begin{document}
\title{杨清音 \LaTeX 慕行秋}
\author{}
\date{}
\maketitle
%当前页不显示页码
\thispagestyle{empty}
\newpage
%从下面开始设置页首页眉
%设置页首
\lhead{Team \# 2022050412345}
\chead{}
\rhead{Page \thepage $\;$ of \pageref{LastPage}}
%设置页眉
\lfoot{左页脚}
\cfoot{\thepage}
\rfoot{右页脚}
%设置横线分割的宽度
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\headwidth}{\textwidth}
\renewcommand{\footrulewidth}{0.4pt}
%设置行间距1.5倍
\onehalfspacing
%设置段落间距
\addtolength{\parskip}{0.4em}
\setcounter{page}{1}
\tableofcontents
\newpage
\section{一般}
$\pm\times\div\approx\equiv\perp\propto\\$
$a^{2x+3}_{\sqrt{a-3}}\\$
$a\vec{ab}c\\$ %短箭头
$a\overrightarrow{ab}c\\$ %长箭头
$a\bar{ab}c\\$ %线短
$a\overline{ab}c\\$ %线长
$\overbrace{1,2,3...}\\$
$\underbrace{1,2,3...}\\$
$$\Delta \delta\lnot q\\$$
\subsection{单竖线矩阵}
$\begin{vmatrix}
a&b\\
c&d
\end{vmatrix}$
\subsection{双竖线矩阵}
$\begin{Vmatrix}
a&b\\
c&d
\end{Vmatrix}$
\subsubsection{大括号矩阵}
$\begin{Bmatrix}
a&b\\
c&d
\end{Bmatrix}$
\subsubsection{中括号矩阵}
$\begin{pmatrix}
a&b\\
c&d
\end{pmatrix}$
\subsubsection{小括号矩阵}
$\begin{pmatrix}
a&b\\
c&d
\end{pmatrix}$
$\begin{bmatrix}
{a_{11}}&{a_{12}}&{\cdots}&{a_{1n}}\\
{a_{21}}&{a_{22}}&{\cdots}&{a_{2n}}\\
{\vdots}&{\vdots}&{\ddots}&{\vdots}\\
{a_{m1}}&{a_{m2}}&{\cdots}&{a_{mn}}\\
\end{bmatrix}$
\section{行内小矩阵}
$\left(
\begin{smallmatrix}
a&b\\
c&d
\end{smallmatrix}
\right)$
\subsection{array}
$\begin{array}{c|c}
a&b\\
\hline
c&d
\end{array}$
\subsection{方程组}
$$\begin{cases}
a_1x+b_1y+c_1z=d_1\\
a_2x+b_2y+c_2z=d_2\\
a_3x+b_3y+c_3z=d_3\\
\end{cases}$$
\section{文献引用}
\subsection{一般引用}
%引用文献
那个部分的原理就是。。。\cite{pa}
\begin{thebibliography}{99}
%\emph表强调
\bibitem{pa}程一云,苏伟: \emph{计算方法},\texttt{/article/}
\end{thebibliography}
\subsection{手动bib方式引用}
那个部分的原理就是。。。\cite{Alice13}
\subsection{自动生成bib方式引用}
\cite{_12m_2022}
\cite{_5g_nodate}
\cite{__nodate}
\cite{_stp_2022}
\cite{__2023}
\newpage
%%导入是数据库的参考文献模板
\bibliographystyle{plain}
%导入模板,只导入一次
\bibliography{}
\end{document}