1.latex中公式中的~
$\sim$
2.上取整符号
$\lceil \rceil$
3.插入图片
使用宏包\graphicx
\documentclass{article}
%引言区
\usepackage{graphicx}
... ...
%引言区
\begin{document}
使用浮动体导入图片
\begin{figure}[ht]
% h表示here t表示top
\centering
\includegraphics[scale=0.6]{fullscreen.png}
\caption{this is a figure demo}
\label{fig:label}
\end{figure}