Problem:
Managed to find a solution to cite full references in-text but when I adopt it in my thesis I get two kind of errors.
Minimal Working Example:
\documentclass[11pt]{article}
\usepackage{bibentry}
\usepackage{apacite}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{rub14,
author = {Rubin, Jared},
title = {Printing and {Protestants}: An empirical test of the role of printing in the {Reformation}},
journal = {Review of Economics and Statistics},
volume = {96},
number = {2},
pages = {270--286},
year = {2014},
}
\end{filecontents}
\begin{document}
\nobibliography*{}
\bibentry{rub14}
\nocite{*}
\bibliographystyle{apacite}
\bibliography{\jobname}
\end{document}
When I try to extract and use the same procedure in my thesis, I get two types of errors:
- thesis.bbl:8: LaTeX Error: Lonely \item--perhaps a missing list environment.
- thesis.bbl:11: Paragraph ended before \BR@c@bibitem was complete.
I am not sure why it says thesis.bbl when it's a .bib file I work with.
Appreciate any guidance in trying to understand why it works in MWE but not in the thesis. Same packages are being used.
UPDATE:
thesis.tex
\documentclass[twoside,11pt]{Latex/Classes/thesis}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pdfpages}
\usepackage{afterpage}
\usepackage{emptypage}
\usepackage{apacite}
\usepackage{bibentry}
\usepackage{notoccite}
\usepackage{url}
\usepackage{etoolbox}
%\usepackage{titletoc}
\usepackage[titles]{tocloft}
\usepackage{caption}
thesis.cls
%:-------------------------- book style -----------------------
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{book}}
\ProcessOptions\relax
\LoadClass[a4paper]{book}
%:-------------------------- packages for fancy things -----------------------
\usepackage{mathptmx} % Default font for dissertations is Times.
%\usepackage{fourier} % If mathematics don't display well using Times, then use Fourier.
\usepackage{enumitem}
\usepackage{tabularx,ragged2e,booktabs,caption,tabulary}
\usepackage[flushleft]{threeparttable}
%\usepackage{setspace}
\usepackage{geometry}
\usepackage{amssymb}
\usepackage{textcomp}
\usepackage{atbegshi}
\usepackage{amsmath}
\usepackage{amsbsy}
\usepackage[pdftex]{graphicx} % for improved inclusion of graphics
\usepackage{epstopdf} % converts eps figures to pdf
\usepackage[margin=10pt,font=small,labelfont=bf]{caption} % for improved layout of figure captions with extra margin, smaller font than text
\usepackage{fancyhdr} % for better header layout
\usepackage{eucal}
\usepackage[polutonikogreek,english]{babel}
\usepackage[usenames, dvipsnames]{color}
\usepackage[perpage]{footmisc}
\usepackage{enumerate} % enumerated list for List of Papers
\usepackage{ifthen}
\usepackage{multicol} % for pages with multiple text columns, e.g. References
\setlength{\columnsep}{20pt} % space between columns; default 10pt quite narrow
\usepackage[nottoc]{tocbibind} % correct page numbers for bib in TOC, nottoc suppresses an entry for TOC itself
%\usepackage{nextpage}
\usepackage[T1]{fontenc}
\usepackage{calligra}
%if you use a macTeX 2008 or later, use the ifpdf package
\usepackage{ifpdf}
\usepackage[ pdftex, plainpages = false, pdfpagelabels,
pdfpagelayout = useoutlines,
bookmarks,
bookmarksopen = true,
bookmarksnumbered = true,
breaklinks = true,
linktocpage,
pagebackref = false,
colorlinks = false, % was true
linkcolor = blue,
urlcolor = blue,
citecolor = red,
anchorcolor = green,
hyperindex = true,
hyperfigures
]{hyperref}

.bblfile and retry. – karlkoeller Feb 13 '15 at 12:07