tlmgr
can be used to install and update packages from the command line.BasicTeX
instead of the full install you won't have access to the \author
or \affil
commands provided by the authblk
package. You'll need to install it manually.authblk
we need to install the preprint
bundle via: sudo tlmgr install preprint
sudo tlmgr update –list
will display which packages need to be updated.sudo tlmgr update –all
will actually update them.cd
Into the directory containing your .tex and .bib files and run:pdflatex whitepaper.tex
pdflatex whitepaper.tex
bibtex whitepaper.aux
pdflatex whitepaper.tex
pdflatex whitepaper.tex
makeglossaries whitepaper
pdflatex whitepaper.tex
glossaries
package the \printglossaries
command wont print your Glossary if you've suppressed page numbers with \pagenumbering{gobble}
natbib
package can be used to achieve this referencing style. The following should be in your preamble:.bib
file will produce the correct reference page entry:Cost \customtilde \$10,000
In situations like a chapter start it is advisable to end the previous chapter with a\clearpage
to flush out all floats, but in other situations this might result fairly empty pages with only floats on them which may or may not be desired.A second difference is\clearpage
actually always starts a new “page” while\newpage
really only ends the current column.