1. 程式人生 > >(研究生)LaTex論文排版:交叉引用及參考文獻生成

(研究生)LaTex論文排版:交叉引用及參考文獻生成

在論文寫作中,交叉引用很常見,方便讀者快速找到你所指向的 文獻,圖片,表格,段落等。那麼在latex如何快捷地實現呢?

1. 參考文獻

1.1 參考文獻的生成

有兩種方法,一是使用 bibtex的方法,二是使用 item的方法(待完善)

2. 圖片,表格,段落的交叉引用

此處涉及到\label 的使用,一定要合理的使用\label,這樣可以快捷地
導言區

\usepackage{cite}
\usepackage[colorlinks,
linkcolor=blue,
 anchorcolor=blue,
 citecolor=blue]{hyperref}    % 文獻超連結,同時使得跳轉部分為 藍色

2.1 段落/表交叉引用

\section{Section title}
\label{sec:1}
as required. see Table~\ref{tab:1}
\subsection{Subsection title}
\label{sec:2}
as required. Don't forget to give each section
and subsection a unique label (see Sect.~\ref{sec:1}).

正文中: Use paragraph headings as needed.in Fig.\ref{fig:1a} and Fig.~\ref{fig:1b}

注意這裡~符號表示有一個空格

2.2圖片交叉引用

\begin{figure*}\sidecaption
 \begin{minipage}{5cm}
  \includegraphics[width=1\textwidth]{fig1.png}
  \subcaption{fig1}\label{fig:1a}
   \centering
  \end{minipage}
  \begin{minipage}{5cm}
  \includegraphics[width=1\textwidth]{fig1.png}
  \centering
  \subcaption{fig2}\label{fig:1b}
  \end{minipage}
\caption{2222}
\end{figure*}

段落/圖片/表格集中顯示效果如圖下:
在這裡插入圖片描述
其中藍色部分均可以跳轉。

最後以在CSDN直接輸出的公式結束, E = m c 2 1 3 + t d 3 0 m c d x E=mc^2\frac{1}{\sqrt{3+td^3}}\int_0^\infin mcdx
用的還是latex的規則,所以學學latex還是可以移植的。