使用 \cite 时,使用 TexMaker 时我在参考书目中看不到任何书籍参考资料

使用 \cite 时,使用 TexMaker 时我在参考书目中看不到任何书籍参考资料

我尝试在网上搜索,但目前还没有找到。我看到的唯一条目是我在参考书目中拥有的所有文章。有人能帮忙提供正确的命令吗?

一些细节...

\documentclass[english,11pt]{article}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{babel}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{times}
\usepackage[margin=1.0in]{geometry}

\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\newtheorem{theorem}{Theorem}

\theoremstyle{definition}
\newtheorem{exmp}{Example}[section]

\newenvironment{equations}{\equation\aligned}{\endaligned\endequation}

和...

\bibliographystyle{plain}
\bibliography{rsaCryptoBiblio}

也在参考书目中...我有...

@article 和 @book 引用

还有两个例子……

@article{Atkins1994, 
author = "Derek Atkins and Michael Graff and Arjen K. Lenstra and Paul C. Leyland",
title = "{T}he {M}agic {W}ords are {S}quemish {O}ssifrace",
year = "1994",}

@book{Intro2012,
author    = "Wade Trappe and Lawrence Washington",
title     = "Introduction to Cryptography with Coding Theory",
year      = "2002",
publisher = "Pearson",}

答案1

missing journal除了文章中的警告之外,一切似乎都很好。如果在使用 进行编译后使用,Atkins1994则以下内容可立即使用。bibtexpdflatex

\documentclass[english,11pt]{article}

\usepackage[english]{babel}


\begin{document}
\nocite{*}

\bibliographystyle{plain}
\bibliography{rsaCryptoBiblio}
\end{document}

参考书目文件:rsaCryptoBiblio.bib

@article{Atkins1994, 
author = "Derek Atkins and Michael Graff and Arjen K. Lenstra and Paul C. Leyland",
title = "{T}he {M}agic {W}ords are {S}quemish {O}ssifrace",
journal="Silly walk Journal",
year = "1994"
}

@book{Intro2012,
author    = "Wade Trappe and Lawrence Washington",
title     = "Introduction to Cryptography with Coding Theory",
year      = "2002",
publisher = "Pearson"
}

在此处输入图片描述

相关内容