I am getting an error of the type "can be used only in preamble", and I am also having an error with the bibliography. Maybe both errors are related. My .TEX file is as follows:
\documentclass[12pt,a4paper]{article}
\usepackage[backend=biber]{biblatex}
\usepackage[english]{babel}
\title{LaTex error: can be used only in preamble}
\author{John Doe}
\begin{document}
\maketitle
\section{Introduction}
\label{sec:intro}
The problem of constructing reliable circuits was first stated by John von
Neumann in 1952, but it is fair to say that the topic became a field of
research from 1956 onwards, with the work of E.F. Moore and C.E. Shannon \cite{MooreShannon56}.
% \section*{References}
% \nocite{*}
% \bibliographystyle{plain}
\bibliography{Biblio1}
\end{document}
and my .BIB file only contains the following entry:
@article{MooreShannon56,
author = "E.F. Moore and C.E. Shannon",
title = "Reliable circuits using less reliable relays",
journal = "Journal of the Franklin Institute",
volume = "262",
number = "3",
pages = "191 - 208",
year = "1956",
issn = "0016-0032",
doi = "http://dx.doi.org/10.1016/0016-0032(56)90559-2",
url = "http://www.sciencedirect.com/science/article/pii/0016003256905592"
}
Besides the aforementioned error, the list of references is not shown. I am using MikTeX in combination with TeXnicCenter.
\bibliographystylewithbiblatexand\bibiliographyhas to be in the preamble (better as\addbibresource: seebiblatexdocs). If that is what you have then the input is wrong ... – Joseph Wright May 25 '17 at 15:39