I am facing some issues with bibtex in elsarticle. Below is the bibtex file-
@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}
}
Below is the output-

Following are the issues, which I am facing-
- While referring a website URL, I am getting following error while compiling "Warning--empty year in EducationData; set to ????". Please see 1st entry in the attached output.
- Unable to remove field
pagesfrominproceedingssection. Getting following error, after removingpagesfield "Warning--empty pages in PMistrySIGGRAPH" - Unable to distinguish among the various fields in the generated PDF. Please try to differentiate between author's name and title in the 2nd and 3rd entry in the attached output.
- Prefix pp, vol., no. are nowhere visible in the generated PDF
For the issue (4), I referred here but I get stuck after getting the following error "! Undefined control sequence." Below is the snippet of tex file (You may find some of the unnecessary packages declaration, which I am using in original version)-
\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}
I am using Texmaker 4.1.1 with MiKTeX 2.9 in Windows 7 32 bit OS.
@miscrequireauthorandyearfields. (ii) What do the two\DeclareFieldFormatdirectives do? (iii) Which bibliography style do you use? (iv) For entries of type@inproceedings, thepagesfield is optional; if you don't want to show pages for a particular entry, don't provide thepagesfield. (v) Not directly related to the topic of your posting, but still of relevance: Thesubfigurepackage is deprecated: Don't use it. Use thesubcaptionor thesubfigpackage instead. – Mico Oct 14 '14 at 20:03\DeclareFieldFormat: It requires the use ofbiblatex. Since you're not loading that package, you can't use\DeclareFieldFormat. – Mico Oct 14 '14 at 20:44