默认以数字为中心

默认以数字为中心

目前我的所有数据都如下所示:

\begin{figure}
  \centering
  \includegraphics[width=0.5\columnwidth]{my-figure}
\end{figure}

我想避免\centering在每个图中指定,而是希望在需要时指定替代方向(很少)。这可能吗?

答案1

尝试一下这个:

\documentclass{article}

\usepackage[draft]{graphicx}
\makeatletter
\g@addto@macro\@floatboxreset\centering
\makeatother

\begin{document}

\begin{figure}
  \includegraphics[width=0.5\columnwidth]{example-image-a.png}
\end{figure}

\end{document}

相关内容