While writing the reference in .bib file, I want to mention the address of publication of the book which contains "&" symbol. While executing the main.tex file I am getting error as "! Misplaced alignment tab character &." The code is like
\documentclass{Thesis}
\usepackage{natbib}
\usepackage{hyperref}
\begin{document}
\pagestyle{fancy}
\label{Chapter1}
\section{description}
This is my main text to be provided with reference\cite{Ref1}.
\label{Bibliography}
\lhead{\emph{Bibliography}}
\bibliographystyle{unsrtnat}
\bibliography{Bibliography}
\end{document}
and the Bibliography.bib is in the form
@book{Ref1,
author = " Myself",
title = "it's my book",
year = "2015",
publisher = " Home publication",
address = "At home, Smith & Johns, abc ",
}