自定义书目条目的格式

自定义书目条目的格式

这是我的代码

\documentclass{article}
\usepackage[round,authoryear,numbers]{natbib}
\bibliographystyle{plain}
\usepackage{lipsum}
\title{\bf Minimal Example}
\begin{document}
\maketitle
Here initial concepts and conditions are explained and
several hypothesis are mentioned in brief.

\citep*{allen}, \citep*{bruner} and \citep*{cox}
did the initial work in this area. But in Struss' work \citep{cox}
the definitive model is seen.   

\begin{thebibliography}{9}


    \bibitem[Allen, B.S.~(1985)]{allen}
    {\bf Allen, B.S.} (1984). System-assigned learning strategies and CBI.
    \emph{Journal of Instructional Computing Research},
    \emph{1}(1), 3--18.
    %\filbreak

    \bibitem[Bruner, J.~(1960)]{bruner}
    {\bf Bruner, J.}(1960). \emph{The process of education}.
    New York: Random House.
    %\filbreak

    \bibitem[Cox, S.~R.~(1974)]{cox}
    {\bf Cox, S.~R.}(1974). Computer-assisted instruction and student performance
    in macroeconomic principles.
    \emph{The Journal of Economic Education},
    \emph{6}(1), 29--37.
    %\filbreak

\end{thebibliography}

\end{document}

其输出为

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

我需要定制如下所示的参考书目样式

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

这怎么可能 ?

答案1

看起来您完全是手动构建参考书目。如果这个印象是正确的,那么没有什么可以阻止您在引用标签后向材料添加“1.”、“2.”和“3.”,对吗?

附录:您发布的屏幕截图似乎表明格式化书目条目前面的数字应使用无衬线字体排版。如果是这种情况,只需将其替换{\bfseries1. Allen, B.~S.}{\bfseries\textsf{1.} Allen, B.~S.}等。

在此处输入图片描述

\documentclass{article}
\usepackage[round,authoryear]{natbib}
\bibliographystyle{plain}
\usepackage{lipsum}
\title{\bfseries Minimal Example}
\begin{document}
\maketitle
Here initial concepts and conditions are explained and
several hypothesis are mentioned in brief.

\citep*{allen}, \citep*{bruner} and \citep*{cox}
did the initial work in this area. 
But in Struss' work \citep{cox} the definitive model is seen.   

\begin{thebibliography}{9}

\bibitem[Allen, B.~S. (1985)]{allen}
    {\bfseries1. Allen, B.~S.} (1984). System-assigned learning strategies and CBI.
    \emph{Journal of Instructional Computing Research},
    \emph{1}(1), 3--18.

\bibitem[Bruner, J. (1960)]{bruner}
    {\bfseries2. Bruner, J.} (1960). \emph{The process of education}.
    New York: Random House.

\bibitem[Cox, S.~R. (1974)]{cox}
    {\bfseries3. Cox, S.~R.} (1974). Computer-assisted instruction and student performance
    in macroeconomic principles.
    \emph{The Journal of Economic Education},
    \emph{6}(1), 29--37.

\end{thebibliography}
\end{document}

相关内容