latex基础学习

1. 推荐一个适合入门的博客:

http://blog.sina.com.cn/s/blog_90444ed201016iq6.html

另外推荐一本专业的电子版书籍《一份不太简短的 LATEX 2ε介绍 》(又叫做《或 102 分钟了解 LATEX 2ε》),适合当做工具书快速查找对应的内容细节。

 

2. 基本知识积累

(1)写文章时经常会引用别人的研究成果,描述谁谁等人et.al的表示 \textit{et al}.

(2)参考文献:

此操作步骤看百度就很明白了最后的结果 \cite{Sun2012}。注意.bib格式的内容实际用txt或者notepad就可以直接打开,避免来回修改文件格式。

如果有的对于参考文献有要求需要doi的话百度学术是没有的,可以直接在谷歌学术或者镜像网站上搜索,点开文章再查找引用,知己而在网络页面无法打开。

对于部分文章的参考文献里面会包含“&”符号,在编译生成过程无法通过,需要自己手动修改为\&。

 

(3)给文章分章节

\section{Hello China} China is in East Asia.

\subsection{Hello Beijing} Beijing is the capital of China.

\subsubsection{Hello Dongcheng District}

\paragraph{Tian'anmen Square}is in the center of Beijing

\subparagraph{Chairman Mao} is in the center of Tian'anmen Square

\subsection{Hello Guangzhou}

\paragraph{Sun Yat-sen University} is the best university in Guangzhou

插入效果:

latex基础学习_第1张图片

.

(4)公式插入

例如:

\begin{equation}

{{\bf{v}}_{\bf{s}}}(t) = {{\bf{u}}_{\bf{s}}} \cdot ({s_0} + {s(t))}

\label{eq2}

\end{equation}

中间具体的公式编辑部分可以直接在mathtype中将“预置”功能框下的“剪切和复制预置”设置输出选择复制格式为“Tex”格式,编辑好公式后复制,在latex中粘贴即可 

 

(5)图片插入及引用

插入图片需要在begin{document}之前加入包\usepackage{graphicx},插入子图时还需要\usepackage{subfigure}%%%可以插入子图

 

%%%%\scalebox{水平缩放因子}[垂直缩放因子]{对象}

\begin{figure}[htb]

\centering

\scalebox{0.35}{\includegraphics{Attention.jpg}}

\caption{The reflection model of rPPG.}

\label{figmodel}

\end{figure}

in top of Fig. \ref{figmodel}.

 

需要限定图片宽和高时

\includegraphics[width=4.00in,height=3.00in]{Attention.jpg}

 

需要加入两幅图一起,子图形式

\begin{figure}[htb]

\centering

\subfigure[]{ \label{fig3:a}

    \scalebox{0.8}{\includegraphics{handshape.jpg}}

    }

    \subfigure[]{ \label{fig3:b}

    \scalebox{0.4}{\includegraphics{gesture.jpg}}

    }

     \caption{The predefined 13 hand gestures and 3 orientation.}

\label{fig3}

\end{figure}

 

引用图片3,\ref{fig3},注意是label里面的名称。

 

(6)表格插入,可以参考博客https://blog.csdn.net/juechenyi/article/details/77116011点击打开链接,比较详细了。

(7)开始新的一大章\section{The Elsevier article class},没有结束语句 

(8)斜体字 {Installation} %在section的后面,无缩进,或者在文中使用   \emph{elsarticle}

(9)分段,开始新的一段 ;或者换行,开始新的一行

1)\paragraph The CCA-based method

无缩进,只是放大了第一个字母,一般文章的首页第一段的开头才使用

 比如:

2)\begin{document}

Beijing is

the capital

of China.%此部分是连接在一起的一句话

 

New York is

 

the capital

 

of America.%此部分空一行的形式相当于开启新一段,首行自动缩进

 

Amsterdam is \\ the capital \\of Netherlands.%\\符号相当于段内换行

\end{document}

 最终效果:

latex基础学习_第2张图片

(10)加入带黑点的标号形式

\begin{itemize}

\item document style

\item baselineskip

\item front matter

\item keywords and MSC codes

\item theorems, definitions and proofs

\item lables of enumerations

\item citation style and labeling.

\end{itemize}

 效果如图:

latex基础学习_第3张图片

(11)例举

The author names and affiliations could be formatted in two ways:

\begin{enumerate}[(1)]

\item Group the authors per affiliation.

\item Use footnotes to indicate the affiliations.

\end{enumerate}

效果如图:

 

(12)打百分号,12\%,输出为12%

 

(13)脚注的使用方法

\author{Elsevier\fnref{myfootnote}}%脚注的使用方法

\fntext[myfootnote]{Since 1880.}

%Elsevier正文为内容,上方会加入脚注,Since 1880.为对应文章下方的脚注内容

(15)网址引用

\ead[url]{www.elsevier.com}

(16)在文章中插入特殊的字符需要用$符号。如 ${C_k}(t)$,$a$等。

你可能感兴趣的:(latex基础学习)