仅当使用特定引用时才会出现 LaTeX 错误

仅当使用特定引用时才会出现 LaTeX 错误

我遇到了一个奇怪的问题,仅当我包含以下引用时,texmaker 才会引发错误:

however natural mood swings during weekdays might also have an
influence\footnote{see the appendix for "a case of the Mondays" at 
Google in Figure \ref{googmondays}}. As \citeA[p. 4]{yuliandresnerzhu} 
have pointed out especially Mondays can have a significant impact on employees mood.

如果我删除\citeA它,它就会起作用...其他\citeA引用工作得很好。

这是相应的 bibtex 条目:

@INPROCEEDINGS{yuliandresnerzhu,
  author = {Yuliang Oliver Yao and Martin Dresner and Kevin Zhu},
 title = {Searching for the 'Monday Blues' in Order Fulfillment and its   Cure},
 year = {2010},
 owner = {johnny},
 timestamp = {2011.05.11},
url = {http://ssrn.com/abstract=1535117}
}

编辑:

这是我的自定义构建命令:

  latex -interaction=nonstopmode %.tex|bibtex %.aux|latex -interaction=nonstopmode
      %.tex|bibtex %.aux|dvipdfm %.dvi|evince %.pdf

一个有效的例子应该是:

 \documentclass[a4paper,12pt]{article}
 \usepackage{apacite} 
 \bibliographystyle{apacite} 
 \begin{document}

 \section{Design Decisions, why?}   

\subsection{Mood representation}
however natural mood swings during weekdays might also have an
influence\footnote{see the appendix for "a case of the Mondays" at Google in Figure}.
As  \citeA[p. 4]{yuliandresnerzhu} have pointed out especially Mondays can have a
significant impact on employees mood.



\bibliography{JF_MISNAAIFSMP_Biblio}             

  \end{document}         

出现了很多警告,但奇怪的是没有错误。最让我恼火的是,在我插入引文后,它实际上停止了工作,而没有改变任何其他内容。

答案1

您的 bib 记录缺少此参考文献类型的必填字段:您需要一个booktitle字段。记录中缺少必填字段将导致 bibtex 抛出错误;这通常会停止您的构建过程。

您也没有发布者或地址字段,但这些只会导致警告,而不是错误。

相关内容