[Tex/LaTex] BibTex does not include publisher in Book

bibliographiesbibtex

Why does the following BibTex-entry not include the publisher?

@book{billingsley,
  title={Convergence of Probability Measures},
  author={P. Billingsley},
  year={1968},
  publisher={Wiley, New York}
}

There is a warning that the journal is empty, but yeah, it is exactly how I have copied it from google scholar, so I have no idea what to do.

The output is only title, author, and year.

What can I do? Sorry, I am a beginner.

Here is a MWE:

\documentclass[11pt,a4paper,titlepage]{memoir}

\usepackage[OT1]{fontenc}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[sc]{mathpazo}
\usepackage{amsmath,amssymb,amsfonts,mathrsfs}
\usepackage[amsmath,thmmarks]{ntheorem}
\usepackage{graphicx}
\usepackage{soul}
\usepackage{pdfpages}

\begin{document}

text \cite{billingsley}

\bibliographystyle{plain}
\bibliography{refs}


\end{document

Best Answer

To long for a comment.

I have reduced your MWE to the following code, running without errors and returns the desired result. My system here is MiKTeX 2.9, updated yesterday. Styles plainor alpha do not change the publisher output.

Which tex districution do you use? And are youre packages up to date? You can check this by adding a \listfiles before the \documentclass ... and compare the resulting list in the log file with this:

 *File List*
filecontents.sty    2011/10/08 v1.3 Create an external file from within a LaTeX document
  memoir.cls    2013/05/30 v3.7b configurable book, report, article document class
   ifpdf.sty    2011/01/30 v2.3 Provides the ifpdf switch (HO)
  ifetex.sty    2011/12/15 v1.2 ifetex
 ifxetex.sty    2010/09/12 v0.6 Provides ifxetex conditional
ifluatex.sty    2010/03/01 v1.3 Provides the ifluatex switch (HO)
    etex.sty    1998/03/26 v2.0 eTeX basic definition package (PEB)
   mem11.clo    2008/01/30 v0.3 memoir class 11pt size option
mempatch.sty    2009/07/24 v6.0f Patches for memoir class v1.6180339
 fontenc.sty
   t1enc.def    2005/09/27 v1.99g Standard LaTeX file
   babel.sty    2014/03/24 3.9k The Babel package
 bblopts.cfg    2006/07/31 v1.0 MiKTeX 'babel' configuration
 english.ldf    2012/08/20 v3.3p English support from the babel system
inputenc.sty    2014/04/30 v1.2b Input encoding file
    utf8.def    2008/04/05 v1.1m UTF-8 support for inputenc
   t1enc.dfu    2008/04/05 v1.1m UTF-8 support for inputenc
  ot1enc.dfu    2008/04/05 v1.1m UTF-8 support for inputenc
  omsenc.dfu    2008/04/05 v1.1m UTF-8 support for inputenc
no-publisher.bbl

The shorted MWE is:

\listfiles
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{billingsley,
  title     = {Convergence of Probability Measures},
  author    = {P. Billingsley},
  year      = {1968},
  publisher = {Wiley, New York},
}
\end{filecontents*}


\documentclass[11pt,a4paper]{memoir}

\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}

\begin{document}

text \cite{billingsley}. 

\bibliographystyle{alpha} % plain
\bibliography{\jobname}

\end{document}

And the result on my system is:

enter image description here

Please run exactly this MWE on your computer and compare your results with mine.