LaTeX——命令注释(修改)

\documentclass[review]{elsarticle} , % 表示学术文章


\usepackage{lineno,hyperref} , % 引入宏包
%\usepackage{cite} , % 插入参考文献异常时,注释此句
%\usepackage[square, comma, sort&compress, numbers]{natbib} , % 连续引用参考文献,如7-14


\bibliographystyle{.bst} , %参考文献的格式
\biboptions{numbers,sort&compress} , 在%elsevier模板中,natbib包默认已被引用,只需修改natbib选项即可


\begin{document} , %正文开始


\title{Deep Learning} , %文档标题,自动居中


\author{author\fnref{myfootnote}} , % 作者
\address{address} , % 地址


\section{Introduction} , %章节 , 若段落之间空一行,下一段自动缩进


\begin{itemize} , % 在文中插入小段落,段落标号是黑点

\item1
\item2
\item2

\end{itemize}


\begin{figure} , % 插入图片
\begin{center} , % 居中

\includegraphics[width=1.0\textwidth]{figure} , % width=1.0\textwidth,图片的宽度占文字宽度的比例; figure 表示图片名字,不带后缀

\caption{caption} , % 标题
\end{figure}


Gering et al. \cite{gering2003automatic} , % 正文中引入 .bib 文件中的参考文献


\begin{equation} , % 插入公式,字体自动转换


v_i , % _表示下标,^表示上标,上下标有多个时,用花括号包起来


$v_i$ , % 正文中插入公式,公式前后加$


~\\ , % 插入空行


textbf{v} , %\textbf{ }表示粗体
\sum_{i,j} , %\sum_{ }表示连加


\frac{1}{2} , % \frac{分子}{分母}表示分数


\big(,\big) , % \big表示括号加大


\begin{table} , % 插入表格
\begin{center} , % 居中
\begin{tabular}{lrcl} , % lrcl 表示表格的四列居左,居右,居中,居左(left,center,right)

% \\表示换行,\hline表示插入横线
% &表示下一列,\pm表示±

\end{tabular}
\end{table}


\section*{References} , % 加 * 表示章节不排序
\bibliography{References} , % 引入.bib文件


\end{document} , %正文结束

你可能感兴趣的:(LaTeX)