更改 BibTeX 样式 unsrt 的输出

更改 BibTeX 样式 unsrt 的输出

我很抱歉,因为我是初学者,我想更改unsrt参考书目样式的输出,但我在第 34 个标签页中找不到有关 BibTeX 的任何内容。此外,我尝试了其他样式,但最接近我需要的是unsrt进行一些更改

我想要一种未分类的参考书目样式,这样年份就不会出现在末尾,而是出现在作者姓名旁边。

例如:

我不想要这个

[1] Robinson GW、Zhu S.-B. 和 Evans MW,《生物学、化学和物理学中的水。实验概述和计算方法》。世界科学出版社,新加坡,1996 年。

我想要这样的东西

[1] Robinson GW、Zhu S.-B. 和 Evans MW(1996 年)《生物学、化学和物理学中的水。实验概述和计算方法》。世界科学出版社,新加坡。

答案1

可能是风格繁體中文完成这项工作(仅适用于 bibtex)。您可以cj.bst从提供的链接下载并将其放在与您的.tex文件相同的文件夹中。示例文件如下:

\documentclass[11pt]{article}
\author{John Doe} \title{Sample Document}
\begin{filecontents}{myreference.bib}
@string{jgr = "J.~Geophys.~Res."}

@MISC{primes,
   author = "Charles Louis Xavier Joseph de la Vall{\'e}e Poussin",
   note = "A strong form of the prime number theorem, 19th century",
   year = 1879
   }

@INBOOK{chicago,
   title = "The Chicago Manual of Style",
   publisher = "University of Chicago Press",
   edition = "Thirteenth",
   year = 1982,
   pages = "400--401",
   key = "Chicago"
   }

@BOOK{texbook,
   author = "Donald E. Knuth",
   title= "The {{\TeX}book}",
   publisher = "Addison-Wesley",
   year = 1984
   }

@BOOK{latexbook,
   author = "Leslie Lamport",
   title = "{\LaTeX \rm:} {A} Document Preparation System",
   publisher = "Addison-Wesley",
   year = 1986
   }

@UNPUBLISHED{btxdoc,
   author = "Oren Patashnik",
   title = "{Using BibTeX}",
   note = "Documentation for general BibTeX users",
   month = jan,
   year = 1988
   }

@UNPUBLISHED{btxhak,
   author = "Oren Patashnik",
   title = "Designing BibTeX Styles",
   note = "The part of BibTeX's documentation
                            that's not meant for general users",
   month = jan,
   year = 1988
   }

@BOOK{strunk,
   author = "Strunk, Jr., William and E. B. White",
   title = "The Elements of Style",
   publisher = "Macmillan",
   edition = "Third",
   year = 1979
   }

@book{vanleunen,
   title = "A Handbook for Scholars",
   author = "Mary-Claire van Leunen",
   publisher = "Knopf",
   year = "1979"
   }

@ARTICLE{Zurek:1993,
   AUTHOR  = {Zurek, R. W. and Martin, L. J.},
   TITLE   = {Interannual Variability of planet-encircling dust activity on {M}ars},
   YEAR    = {1993},
   JOURNAL = jgr,
   VOLUME  = {98},
   NUMBER  = {E2},
   PAGES   = {3247--3259}
}

@Article{Narendra_1990,
  author =       {K.S.Narendra and K.Parthsarathy},
  title =        {Identification and Control of Dynamical System
                  using Neural Networks},
  journal =      "IEENN",
  year =         {1990},
  volume =    {1},
  number =    {1},
  month =     {},
  pages =     {4-27},
  note =      {},
  annote =    {}
} 
\end{filecontents}
\begin{document}
\maketitle

\section{Introduction}

According to the handbook of van Leunen \cite{vanleunen},
this paragraph---and certainly this
section---should be longer than one sentence.

\section{More references}

Here we see if the reference \cite{Narendra_1990}
to the Narendra article comes out OK, in particular,
with volume, number \& pages.

The necessary information for those who would use BibTeX
is available in the 1988 document of Prof.\ Patashnik \cite{btxdoc}.
Interested readers who can read French may also
want to read Poussin's proof\cite{primes}, though
it has nothing at all to do with BibTeX.

\section{Conclusion}

This is the concluding paragraph.  Here I cite another of
Oren Patashnik's books\cite{btxhak} and, again,
van Leunen's and Poussin's \cite{vanleunen,primes}.

\bibliographystyle{cj}  % (uses file "cj.bst")
\bibliography{myreference}      % expects file "myreference.bib"
\end{document}

在此处输入图片描述

在此处输入图片描述

相关内容