LaTeX .gitignore file

When using Git to synchronise LaTeX projects, some files should not be committed. These files could be LaTeX temporary files, your final generated pdf document or hidden files made by OS. Followings may need to be added to your .gitignore.

Read more
LaTeX插入图片及多行多列图片排版

LaTeX插入图片及多行多列图片排版

LaTeX插入一张图片

首先导入宏包

1
\usepackage{graphicx}

插入图片

1
2
3
4
5
\begin{figure}[htbp]
\centering
\includegraphics[width=0.6\textwidth]{figures/image.png}
\caption{题注}
\end{figure}
Read more