自定义 BibTex

自定义 BibTex

如何解决自定义书目条目的格式使用带有超链接的 BibTex

答案1

从给出的代码开始这个答案,则需要在序言中添加以下指令:

\usepackage[colorlinks,citecolor=blue]{hyperref} % choose whichever color you like best

在此处输入图片描述

\documentclass{article}
\usepackage[round,authoryear]{natbib}
\bibliographystyle{plain}
\usepackage[colorlinks,citecolor=blue]{hyperref}

\begin{document}

\citep{allen}; \citet{bruner}; \citep{cox}
\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}

相关内容