书目问题

书目问题

我对此并不十分了解,因此,如果能用非常简单易懂的格式回复,我将不胜感激。谢谢。

下面您将看到我的作品的前几行。

\documentclass[a4paper,twoside,10pt]{scrbook}
%\usepackage[utf8]{inputenc}
\usepackage{amsmath, amsthm, amssymb}
\bibliographystyle{plain}
\usepackage{plain}
\setcounter{secnumdepth}{2}
\setcounter{tocdepth}{2}
\usepackage{graphicx}
\pagestyle{headings}
\numberwithin{equation}{section}
\numberwithin{table}{chapter}
\numberwithin{figure}{chapter}
\newcommand{\bm}[1]{\mbox{\boldmath{$#1$}}}
\begin{document}
\bibliography{With Bibliography}
\author{Dr. Glyn Williams}

我正在尝试将 \cite 引用包含在作品正文中。我已编译 .bib 和 .bbl 文件。我得到一个以以下内容开头的列表:

@article{Abramovitz,
    Author = {Abramovitz and Stegan},
    Date-Added = {2016-07-05 4:34:28 pm +0000},
    Date-Modified = {2016-07-05 4:37:31 pm +0000},
    Journal = {National Bureau of Standards, Applied Mathematics Series, Washington D.C.},
    Title = {Handbook of Mathematical Functions with Formulas, Graphs and Mathematical Tables},
    Volume = {55},
    Year = {1965}}

@article{Arnaud1,
    Author = {Arnaud},
    Date-Added = {2016-07-05 3:29:29 pm +0000},
    Date-Modified = {2016-07-09 10:21:07 am +0000},
    Journal = {Academic Press Inc. (London)},
    Title = {Beam and Fibre Optics},
    Year = {1976}}

当我将作品转换为 PDF 时,我发现引用类似于:Dicke[?],而 [ ] 中没有任何内容。在我看来,系统尚未编译,但我不知道我没有做什么。

抱歉,我太愚钝了,但这不是我的强项!期待收到您的评论。
谢谢
。W 博士。

答案1

您的 bib 文件非常混乱,并且 tex 文件中的代码不可能生成格式化的参考书目。

关于 bib 文件中的条目:

  • 您展示的两个条目都是书籍 -为什么他们被赋予类型@article而不是@book

  • 第一篇日志的两位作者的姓氏都拼错了。是“Abramowitz”,而不是“Abramovitz”。而且是“Stegun”,而不是“Stegan”。真的,正确拼写名字比随意犯拼写错误难多少?

  • 所有作者的名字均缺失

  • 第二篇文章的标题又出现了一个拼写错误。它应该是“Fiber”,而不是“Fibre”。(是的,它拼写为“Fiber”,尽管出版商位于伦敦……)

  • 首次出版的年份是 1964 年,而不是 1965 年。

  • 这两个条目中的许多字段完全不适合书籍——甚至也不适合期刊文章。请参阅下面的代码以尝试纠正一些问题。

我只能推测你正在使用一款非常糟糕且不合适的软件来构建 bib 条目。立即摆脱它!你将节省大量手动构建 bib 条目的时间。更好的是,获得更好的软件工具。

关于乳胶文件本身:

  • 没有\cite类似命令。如果什么都没有引用,你如何指望 BibTeX 和 LaTeX 知道如何创建参考书目?

  • 的参数\bibliography应为带有扩展名的文件名.bib。例如,如果 bib 文件名为mybib.bib,则应写入\bibliography{mybib}。注意: 的参数中没有给出文件扩展名\bibliography

  • 参考书目样式plain会生成数字样式的引文标注。这就是您想要的吗?

这里尝试创建一个最小但正确的参考书目。

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@book{Abramowitz,
    Author    = {Milton Abramowitz and Irene Ann Stegun},
    Publisher = {National Bureau of Standards},
    Address   = {Washington D.C.},
    Title     = {Handbook of Mathematical Functions with 
                 Formulas, Graphs and Mathematical Tables},
    Series    = {Applied Mathemathics Series},
    Number    = {55},
    Year      = {1964}
}
@book{Arnaud1,
    Author    = {J. A. Arnaud},
    Publisher = {Academic Press},
    Address   = {London},
    Title     = {Beam and Fiber Optics},
    Year      = {1976}
}
\end{filecontents}

\documentclass{article}
\bibliographystyle{plain}

\begin{document}
\cite{Abramowitz}, \cite{Arnaud1}
\bibliography{mybib}
\end{document}

相关内容