我的文档中包含了很多图片。每当我想创建一个新文档时,我都会输入\begin {figure}
以下内容,然后会自动完成:
\begin{figure}
\centering
\includegraphics{}
\caption{Caption}
\label{fig:my_label}
\end{figure}
我每次要做的就是进入并将其更改为:
\begin{figure}[H]
\centering
\includegraphics[width=\textwidth]{}
\caption{Caption}
\label{fig:my_label}
\end{figure}
我可以自动化它以包括[H]
和[width=\textwidth]
吗?