Use the following commands to compile a .tex
file with .bib
file.
pdflatex {filename}
bibtex {filename}
pdflatex {filename}
pdflatex {filename}
file.tex
\documentclass{article}
\usepackage{apacite}
\title{Title}
\author{Author}
\begin{document}
\maketitle
Some claim \cite{jensen2018frequency}.
\bibliographystyle{apacite}
\bibliography{References}
\end{document}
References.bib
@misc{jensen2018frequency,
title={Frequency identification for microwave ablation probes},
author={Jensen, Jeffrey L and Brannan, Joseph D},
year={2018},
month=aug # "~14",
publisher={Google Patents},
note={US Patent 10,045,819}
}