elsarticle 中的 Bibtex 问题

elsarticle 中的 Bibtex 问题

我在 elsarticle 中使用 bibtex 时遇到了一些问题。以下是 bibtex 文件-

@misc{EducationData,
  title        = {Education},
  howpublished = {\url{http://data.worldbank.org/topic/education?display=graph}},
  note         = {[Online; accessed: 2014-09-23]}
}

@inproceedings{PMistrySIGGRAPH,
    author       = {P Mistry and P Maes},
    title        = {Sixth{S}ense - {A} {W}earable {G}estural {I}nterface},
    booktitle    = {Proceedings of SIGGRAPH Asia},
    address      = {Yokohama, Japan},
    organization = {Emerging Technologies},
    pages        = {0-0},
    year         = {2009}
}

@article{Mignonneau2005,
  title   = {Designing emotional, metaphoric, natural and intuitive interfaces for interactive art, edutainment and mobile communications},
  journal = {Computers \& Graphics},
  volume  = {29},
  pages   = {837-851},
  year    = {2005},
  author  = {L Mignonneau and C Sommerer}
}

@book{CynthiaSmith,
    author    = {Cynthia E. Smith},
    title     = {Design For The Other 90\%},
    year      = {2007},
    publisher = {Editions Assouline}
}

以下是输出- 在此处输入图片描述

以下是我面临的问题-

  1. 引用网站 URL 时,我在编译时收到以下错误“警告——EducationData 中的年份为空;设置为????”。请参阅附件输出中的第一个条目。
  2. 无法pages从部分中删除字段。删除字段“警告——PMistrySIGGRAPH 中的空白页”inproceedings后出现以下错误pages
  3. 无法区分生成的 PDF 中的各个字段。请尝试区分附件输出中第 2 和第 3 个条目中的作者姓名和标题。
  4. 生成的 PDF 中不存在前缀 pp、vol.、no.

对于问题 (4),我提到这里但我在收到以下错误“!未定义的控制序列”后陷入困境。以下是 tex 文件的片段(您可能会发现一些不必要的包声明,我在原始版本中使用了这些声明)-

\documentclass[final,5p,times]{elsarticle}
\usepackage{amsmath}
\usepackage[nodots]{numcompress}
\usepackage{lineno}
\setlength\linenumbersep{3pt}
\usepackage{subfigure}
\usepackage{hyperref}
\usepackage{algorithm}
\usepackage[noend]{algpseudocode}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
%% Writing C#
\newcommand{\Csharp}{%
  {\settoheight{\dimen0}{C}C\kern-.05em \resizebox{!}{\dimen0}{\raisebox{\depth}{\#}}}}

\journal{Computers \& Graphics}
\begin{document}
\begin{frontmatter} 
    \title{A Sample Paper written in \LaTeX ~using elsarticle}
\end{frontmatter}

\section{INTRODUCTION}
This is created just for demonstration purpose \cite{EducationData}. Following are some more references \cite{PMistrySIGGRAPH} and \cite{Mignonneau2005} . The reference of a book goes here \cite{CynthiaSmith}.

\bibliographystyle{model3-num-names}
\bibliography{Sample}

\end{document}

我在 Windows 7 32 位操作系统中使用 Texmaker 4.1.1 和 MiKTeX 2.9。

相关内容