加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

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
    \parindent 0pt
    \parskip 2ex
    \def\enotesize{\normalsize}
    \theendnotes
\endgroup
\end{CJK*}
\end{document}

 

 

具体参见链接:

http://jimsheng.hubpages.com/hub/The-LaTeX-endnotes-package

http://help-csli.stanford.edu/tex/latex-footnotes.shtml

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有