diff options
author | Norbert Preining <norbert@preining.info> | 2022-07-30 03:02:53 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2022-07-30 03:02:53 +0000 |
commit | ab0990ca5f58ea10d38cc1760dbcbbd832626f40 (patch) | |
tree | be3a3f78d38022e69e58965c29e10780d8d3ac6c /macros/xetex/latex/hfutthesis/hfut-chapters/citations.tex | |
parent | da2dc471ec5bb2620f0ef5a4a700b236d1a8af06 (diff) |
CTAN sync 202207300302
Diffstat (limited to 'macros/xetex/latex/hfutthesis/hfut-chapters/citations.tex')
-rw-r--r-- | macros/xetex/latex/hfutthesis/hfut-chapters/citations.tex | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/macros/xetex/latex/hfutthesis/hfut-chapters/citations.tex b/macros/xetex/latex/hfutthesis/hfut-chapters/citations.tex new file mode 100644 index 0000000000..7fb1a3e67e --- /dev/null +++ b/macros/xetex/latex/hfutthesis/hfut-chapters/citations.tex @@ -0,0 +1,44 @@ +% !TeX root = ../main.tex + +\chapter{引用文献的标注} + +模板使用 \pkg{natbib} 宏包来设置参考文献引用的格式,默认采用角标数字标注法, +更多引用方法可以参考该宏包的使用说明。 + +\section{顺序编码制} + +\subsection{角标数字标注法} + +\hfutsetup{ + cite-style = super, +} +\noindent +\begin{tabular}{l@{\quad$\Rightarrow$\quad}l} + \verb|\cite{knuth86a}| & \cite{knuth86a} \\ + \verb|\citet{knuth86a}| & \citet{knuth86a} \\ + \verb|\cite[42]{knuth86a}| & \cite[42]{knuth86a} \\ + \verb|\cite{knuth86a,tlc2}| & \cite{knuth86a,tlc2} \\ + \verb|\cite{knuth86a,knuth84}| & \cite{knuth86a,knuth84} \\ +\end{tabular} + + +\subsection{数字标注法} + +\hfutsetup{ + cite-style = inline, +} +\noindent +\begin{tabular}{l@{\quad$\Rightarrow$\quad}l} + \verb|\cite{knuth86a}| & \cite{knuth86a} \\ + \verb|\citet{knuth86a}| & \citet{knuth86a} \\ + \verb|\cite[42]{knuth86a}| & \cite[42]{knuth86a} \\ + \verb|\cite{knuth86a,tlc2}| & \cite{knuth86a,tlc2} \\ + \verb|\cite{knuth86a,knuth84}| & \cite{knuth86a,knuth84} \\ +\end{tabular} + +\hfutsetup{ + cite-style = super, +} + +% 注意,参考文献列表中的每条文献在正文中都要被引用。这里只是为了示例。 +\nocite{*} |