\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
1 + 2 = 3
\end{equation*}
\begin{equation*}
1 = 3 - 2
\end{equation*}
\begin{align*}
1 + 2 &= 3 \\
1 &= 3 - 2
\end{align*}
\end{document}
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
f(x) &= x^2\\
g(x) &= \frac{1}{x}\\
F(x) &= \int^a_b \frac{1}{3}x^3
\end{align*}
\end{document}
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h!] # 设置图片的位置 t (top) - top of page b (bottom) - bottom of page
\includegraphics[width=\linewidth]{featuremaps.png}
\caption{A featuremaps1.} #图片下面的附属文字
\label{fig:featuremaps2} # 相当于一个图片的引用,用于在文字阶段使用
\end{figure}
\begin{figure}
\includegraphics[width=\linewidth]{1.jpg}
\caption{B featuremaps1.}
\label{fig:featuremaps1}
\end{figure}
Figure \ref{fig:featuremaps1} shows a featuremaps1.
\end{document}
\documentclass{article}
\begin{document}
# 引用文献 DUMMY:1表示Bib数据库中的索引
Random citation \cite{DUMMY:1} embeddeed in text.
# 脚本说明 \footnote 脚本 \label{myfootnote}代表脚本的引用
This is some example text\footnote{\label{myfootnote}Hello footnote}.
\newpage
#在其他地方引用脚本myfootnote
I'm referring to footnote \ref{myfootnote}.
\bibliography{a} # bib数据库的名称
\bibliographystyle{ieeetr}
\end{document}