I am working on a document, and I had all the references how I wanted them, and was trying to change the style. I clicked something, and now my references have all changed, and I don't know how to get them back because I can't find where the event occurred in the log file. How can I search the log file for these events?
The references should include the author, article name, date accessed, and the URL where the article can be found. The citations in my text take the form of (0, ) at the moment, when they should be the author, and the date. I don't know what I did wrong.
My references look something like this:
\begin{framed}
\noindent \textit{Sidenote:} A polygonal number \cite{Polygonal_number} is a number that can be expressed in dots and arranged in the shape of a polygon. The formula for the $n^{th}$ polygonal number, where the polygon has $s$ sides is:
\[P(s,n)= \frac{n^2(s-2)- n(s-4)}{2}\]
\end{framed}
and the output in the PDF for my references looks like:
Eric W. Weisstein. Polygonal number, 2017
The .bib file for my references looks like:
@misc{Polygonal_number,
author = "Weisstein, Eric W.",
title = "Polygonal Number",
year = "2017",
url = "http://mathworld.wolfram.com/PolygonalNumber.html",
}
The bibliography commands I am using are:
\usepackage{url, apacite}
\bibliographystyle{plain}
\bibliography{References}
.logfile would say anything about, as it's rewritten for every run ofpdflatex(or whatever you're using). How do you make the references in the first place? Which editor are you working in? – Torbjørn T. Mar 16 '18 at 13:32plainformat. If you want that, then remove theapacitepackage. If you want author-year style bibliography, then keepapaciteand instead of\bibliographystyle{plain}use\bibliographystyle{apacite}. Then delete your.auxfiles and compile again, run bibtex etc. again. – Alan Munn Mar 16 '18 at 14:15