书目样式:小型大写字母和粗体

书目样式:小型大写字母和粗体

我的目的是重现这种类型的书目:

我想要的参考书目

我确定了三件主要的事情:

  1. 这是一份alpha风格书目。
  2. 引用名称[罗15]以粗体显示。
  3. 作者的名字采用小写字母。

我设法通过以下方式解决第 1 项和第 2 项:

\documentclass[12pt,a4paper,twoside]{article}
\usepackage[utf8]{inputenc}
\usepackage[frenchb]{babel}

%Bibliography Style
\makeatletter
\renewcommand{\@biblabel}[1]{\textbf{[#1]}}
\makeatother
\bibliographystyle{alpha}

% Command for bold cite in text
\newcommand{\ccite}[1]{\textbf{\cite{#1}}}

\begin{document}

\bibliography{bibliographyName}
\bibliographystyle{alpha}

\end{document}

这只是为了向你展示我做了一点工作,并且我不是没有尝试过就问这个问题!

我怎样才能将作者姓名改为小写字母以完成所需参考书目的复制?

谢谢 !

编辑。我​​想要的参考书目样式如下cparalleles这里的样式:http://www.cs.stir.ac.uk/~kjt/software/latex/showbst.html

答案1

有一款很棒的工具可以编写 bst 文件:makebst由 Patrick Daly 开发。它附带标准 LaTeX 发行版,您可以将其称为

latex makebst

它现在以交互方式向您询问很多问题,并允许您根据您的要求创建自定义 bst 文件。

编辑:当您创建了这样的自定义 bst 文件时,只需将行替换为

\bibliographystyle{alpha}

\bibliographystyle{myalpha} % Insert your choosen name here

并且它应该能够顺利运行通常的序列 latex-bibtex-latex-latex。

相关内容