overleaf保姆级0基础教程(下)

overleaf保姆级0基础教程(下)

  • 推荐两个latex公式网站
  • 一、插入表格
  • 二、插入固定位置图片
  • 三、文字包围图片
  • 五、图片标题和图片引用

推荐两个latex公式网站

  1. 表格编辑器
  2. 数学公式编辑器
    overleaf保姆级0基础教程(下)_第1张图片

一、插入表格

\begin{center}
\begin{tabular}{c c c}
    cell1 & cell2 & cell3  \\
    cell4 & cell5 & cell6  \\ 
    cell7 & cell8 & cell9
\end{tabular}
\end{center}

\begin{center}
\begin{tabular}{|c|c|c|}
\hline
    cell1 & cell2 & cell3  \\
    cell4 & cell5 & cell6  \\ 
    cell7 & cell8 & cell9  \\
\hline
\end{tabular}
\end{center}

\begin{center}
\begin{tabular}{|c c c c|}
\hline
    col1 & col2 & col3 & col4 \\
\hline
\hline
    1 & 2 & 2987 & 287  \\ 
\hline
    8 & 2 & 907 & 870  \\
\hline
    3 & 6 & 173 & 4924  \\
\hline
\end{tabular}
\end{center}

overleaf保姆级0基础教程(下)_第2张图片

二、插入固定位置图片

创建文件夹
overleaf保姆级0基础教程(下)_第3张图片
导入图片
overleaf保姆级0基础教程(下)_第4张图片

\usepackage{graphicx}

\includegraphics[scale=0.5]{images/machine.jpg}

scale表示规格大小,也可以根据angel修改图片的角度
overleaf保姆级0基础教程(下)_第5张图片
overleaf保姆级0基础教程(下)_第6张图片

三、文字包围图片

\usepackage{wrapfig}

\begin{wrapfigure}{r}{0.4\textwidth}
    \includegraphics[width=0.4\textwidth]{images/machine.jpg}
\end{wrapfigure}

overleaf保姆级0基础教程(下)_第7张图片

五、图片标题和图片引用

\begin{figure}[h]
    \centering
    \includegraphics[width=0.5\textwidth]{images/machine.jpg}
    \caption{machine learning}
    \label{fig:1}
\end{figure}

overleaf保姆级0基础教程(下)_第8张图片
overleaf保姆级0基础教程(下)_第9张图片

你可能感兴趣的:(经验分享)