发布时间:2009-12-16 16:40:04
文章类别:参考文献
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100ggck.html
QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载
用
\begin{thebibliography}{99}
\bibitems{...}...
自动生成的参考文献列表,序号自动是数字了。怎么改成作者名字首字母缩写?
如
[1] D. Edwards and W. Li ...
改成
[DL] D. Edwards and W. Li ...
========================================
解决方案:
\begin{thebibliography}{abcdefghijk}
\bibitems[EL]{EL} D. Edwards and W. Li
.....
效果图:
演示代码:
\documentclass[oneside,a4paper]{book}
\usepackage{CJK} % 用CJK支持汉字
\usepackage[body={398pt,550pt},footskip=30pt,%
\renewcommand{\baselinestretch}{1.3}
\setcounter{page}{6}
%\setlength\textwidth{59.0pt}
\begin{CJK*}{GBK}{song}
\begin{document}
\ldots
\begin{thebibliography}{9}
\bibitem[Lamport (1994)]{lamport94}
\end{thebibliography}
\paragraph{}
\newpage
\end{CJK*}
\end{document}
附注说明:
数字 9 说明最多有 9 个文献条目,所以 biblabel 的宽度为 1 个数字,这样方便对齐。其次,每一文献条目均使用 \bibitem[display]{cite_key} 格式,其中 display 控制文献在正文中引用时的显示格式, cite_key 是此条目的标识,用于引用。
发表评论 取消回复