LaTeX中引用参考文献、章节、图表,并跳转

1、LaTeX的头文件中添加

\usepackage[colorlinks,
            linkcolor=blue,
            anchorcolor=blue,
            citecolor=blue]{hyperref}

2、引用参考文献

文章中添加:~\cite{ref_article1}

文章文献结构:

\bibitem{ref_article1}
Author, A.-B.: Contribution title. In: 9th International Proceedings
on Proceedings, pp. 1–2. Publisher, Location (2010)

3、引用图表

文章中添加: 《LaTeX中引用参考文献、章节、图表,并跳转》

图表LaTeX结构:

\begin{figure}[htbp]
\centering
\includegraphics[scale=0.31]{图片名称}
\caption{(a) Network, (b)  graph.}
\label{fig:anna1}
\end{figure}

4、引用算法伪代码

文章中添加:《LaTeX中引用参考文献、章节、图表,并跳转》

算法LaTeX代码:

\begin{algorithm}[h]
  \caption{Channel}
  \begin{algorithmic}[1]
    \Require
      $K$ orthogonal channels.
    \Ensure
      Channel assignment.
    \For{$v$ with maximum}
      \If {no available}
      \State Temporarily;
      \Else
      \State Allocate an available channel;
      \EndIf
    \EndFor
    \For{channel assigned}
      \State Calculate;
    \EndFor
  \end{algorithmic}
  \label{algorithm1}
\end{algorithm}

    原文作者:Tiesto_W
    原文地址: https://blog.csdn.net/wuzzi/article/details/88117850
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞