\begin{abstract}
Blah, blah, blah
\end{abstract}
Where we wrote "blah, blah, blah" above, you should write a sentence or two that will serve as your nonsense abstract for now. We'll cover how to write a good abstract another time.
=== Acknowledgements ===
At the end of your document (after your last normal section, but before the ''\end{document}'' command), **add the acknowledgements section** as follows:
\begin{acknowledgments}
Thanks to all my physics \textit{ph}ans... I couldn't have done it without you!
\end{acknowledgments}
The acknowledgements is where you would acknowledge funding sources if your work was supported by a grant, or its a place to thank collaborators (who weren't authors) or others you had conversations with. It is also common for authors to thank the peer reviewers. You may wish to use this space to thank the lab partners you worked with on your project.
=== Appendices ===
An appendix is a section that comes after the main body of the paper is complete, and it is used to hold "extra" information that you don't want to put in the main text. **Add an appendix after your acknowledgements section** as follows:
\appendix*
\section{Not just a useless organ}
Here is my appendix text
If you have multiple appendices, they should be labeled in sequence, (e.g. Appendix A, Appendix B,...), but if there is only one, it should just read "Appendix". LaTeX will enumerate the sections automatically by default, so if the case where there is a single appendix, we add the asterisk (e.g. "\appendix*") to tell LaTeX not to give it a number or letter.
=== Referencing other sections by number ===
A handy thing to do is to reference a previous (or future) section by number in the text. (For example, "In Section 42, we will cover the answer to life, the universe and everything".) In LaTeX, you can give a section (or a subsection, or a subsubsection) a label just like you give to a figure or table, and reference it in in the same way.
**Create a new section called "Callback"** and write a short string of text that **references a previous section by number** using the ''\ref{sec:label}'' command. Note that you can add the section label //right inside the curly brackets// of the section command, as shown in the following example:
\section{\label{sec:introduction}Introduction}
...
As discussed in Sec. \ref{sec:introduction}, there are many reasons to never eat pie in months that begin with the letters ``Febru".
\bibliography{references}
When you recompile, you may notice that no references have appeared in your paper! That is because the bibliography command will only add those sources which have been cited in the paper... and right now you are not citing any sources. So let's add some citations.
Somewhere in the text of your paper (it doesn't matter where), **add some citations** like the following: ''text text text\cite{sourcename}''. Note that you can also reference multiple sources at once, e.g. ''text text text\cite{source1, source4, sourceJ}''. Now when you recompile, you should see these references added to the reference list.