endnote尾注与footnote脚注
(2013-09-12 10:33:33)分类: Latex学习 |
首先介绍footnote定义的不同脚注类型:(endnote与之类似,只需将footnote改为endnote即可)
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\setcounter{footnote}{0}
不同的脚注符号\footnote{符号型脚注};不同的脚注符号\footnote{符号型脚注}
\renewcommand{\thefootnote}{\arabic{footnote}}
\setcounter{footnote}{0}
不同的脚注符号\footnote{数字型脚注};不同的脚注符号\footnote{数字型脚注}
\renewcommand{\thefootnote}{\roman{footnote}}
\setcounter{footnote}{0}
不同的脚注符号\footnote{小写罗马型脚注};不同的脚注符号\footnote{小写罗马型脚注}
\renewcommand{\thefootnote}{\Roman{footnote}}
\setcounter{footnote}{0}
不同的脚注符号\footnote{大写罗马型脚注};不同的脚注符号\footnote{大写罗马型脚注}
\renewcommand{\thefootnote}{\alph{footnote}}
\setcounter{footnote}{0}
不同的脚注符号\footnote{小写字母型脚注};不同的脚注符号\footnote{小写字母型脚注}
\renewcommand{\thefootnote}{\Alph{footnote}}
\setcounter{footnote}{0}
不同的脚注符号\footnote{大写字母型脚注};不同的脚注符号\footnote{大写字母型脚注}
不同的脚注符号\footnote[8]{自定义型脚注}
对于footnote,需要初始定义
\usepackage{endnotes}%添加安装包
\renewcommand{\theendnote}{\alph{endnote}}%修改类型
\setcounter{endnote}{0}%设置起始值
\renewcommand{\notesname}{Endnotes}%修改名称
在文章中,加入\endnote[number]{context}.
在文章结尾,
\newpage%新页面
\begingroup
\parindent 0pt
\parskip 2ex
\def\enotesize{\normalsize}%设置字号
\theendnotes
\endgroup
简单的例子:
\documentclass{article}
\usepackage{endnotes}
\usepackage{CJK}
\begin{document}
\begin{CJK*}{GBK}{song}
\renewcommand{\notesname}{注释}
\section{Test}
Blah blah Blah blah blah blah\endnote{This is an endnote}.
\newpage
\begingroup
\endgroup
\end{CJK*}
\end{document}
具体参见链接: