$ brew cask install mactex
figure span to one column on double column page
% In twocolumn mode, the figure* environment stretches over the entire page width
\begin{figure*}
\centering \includegraphics{figure}
\caption{This is a figure caption}
\end{figure*}
\caption{Close-up of a gull\label{fig:gull}}
\usepackage{pdflscape}
\begin{document}
\begin{landscape}
.
.
.
\end{landscape}
\end{document}
# inline equation
$ a + b $ #equation
$$ a + b $$ #equation in new line
# equation
\begin{eqaution}
\end{eqaution}
# equation array
\begin{eqnarray}
\end{eqnarray}
# read more in document
# 2.5 Copy a formula
\STcopy{>x,vy}{formula}
# 3.2 Number formatting and the fp package
# foating point numbers are rounded to 2 digits
\STautoround{2}
use setting from master latex
have own setting not using from master latex
Not abbreviate the author name
author = \{\{\relax World Health Organization\} and others\}
citation treated like one word?
Jim\-inez Mart\-inez, Val\-dez Diaz
# or using \hyphenation to cut all the documents
\hyphenation{Jim-inez Mart-inez, Val-dez Diaz}
Word Cut
using \- or < space >
\input{table.tex}
hidden character
\phantom{-} %hidden character
LaTeX tutorial: How to cite references/paper/articles in Latex
# cite to bibtex references
\usepackage{cite}
\cite{sample1234}
# referecnes from bibtex
\bibliographystyle{IEEEtran}
\bibliography{file_of_bibex}
# build latex + bibtex
$ pdflatex paper.tex
$ bibtex paper # without extension
$ pdflatex paper.tex
$ pdflatex paper.tex