如何让 bibtex 工作

如何让 bibtex 工作

我是 LaTeX 和 MiKTeX 的新手,所以答案可能很简单。尝试了几种方法,复制粘贴了一些示例,但还是不行。

.Tex 文件

\documentclass[]{report}
\usepackage{times}
\usepackage[english]{babel}
\usepackage[ibidem]{jurabib}
\usepackage{cite}
\usepackage{comment}


\begin{document}

%First some renames
\renewcommand{\chaptername}{Hoofdstuk}
\renewcommand\bibname{Referenties}
\renewcommand\contentsname{Inhoudsopgave}

\excludecomment{comment} %change exclude to include for showing in pdf too


% Article top matter
\title{Profielwerkstuk} 
\author{Remco\\
        Hi}
\date{\today}  %\today is replaced with the current date
\maketitle

\tableofcontents


\chapter{Test}
\section{Introduction}
Some text

\begin{comment}
Text
\end{comment}


%Text 

\section {Mathematical Equations}

\chapter{}
\section{Introduction}
This small document is designed to illustrate how easy it is to create a
well structured document within \cite{north}


%Create the environment for the bibliography.  Since there is only one
%reference, set the label width to be one character (I shall follow
%convention as use the number '9'.  This is because it helps to remind
%that it is the maximum number of refs that is now permitted by that
%width).

\end{document}  %End of document.

BibTex文件(与.tex保存在同一地图中,名称相同)

@string{jpe = "Journal of Political Economy"}
@BOOK{north, % ‘north’ is de door jou gekozen ‘key’
author = {Douglass C. North},
year = 1990,
title = {Institutions, Institutional Change and Economic Performance},
publisher = {Cambridge: Cambridge University Press}
}
@ARTICLE{becker,
author = {Gary S. Becker},
month = feb,
year = 1962,
title = {Irrational Behavior and Economic Theory},
journal = jpe,
volume = 70,
number = 1,
pages = {1--13}
}

答案1

jurabib包相当专业:它不是为与一般书目样式配合使用而设计的。因此,您需要使用它附带的样式(\bibliographystyle{<name>})。包附带

  • jurabib
  • jureco
  • jurunsrt
  • jox

相关内容