Latex 各个章节加Label引用的问题
(2013-11-01 13:17:37)
标签:
it |
分类: 软件使用技巧 |
有时需要在文章中引用某个章节如section 3.1,我们希望“3.1”能够直接连接到指定的章节,这就需要对
\section{....}或者\subsection{....}添加label,格式如下:
\subsection{Gaussian Likelihood
model}\label{section:sec3.1}
其他的常见的label还有:
(1)公式的: \label{eq:eq3}
(2)图片的: \label{fig:fig2}
(3)表格的: \label{table:table1}
(4)算法的: \label{alg:SSBUCS}
前一篇:Latex中数学符号加粗的问题