Making a small modification to a LaTeX environment

前端 未结 3 1482
一整个雨季
一整个雨季 2020-12-28 15:25

I\'ve been using \\begin{figure} ... \\end{figure} throughout my LaTeX document, but the default styling is ugly; namely, the figures are all left-aligned. Is

3条回答
  •  情话喂你
    2020-12-28 15:38

    How about:

    \newenvironment{centeredfigure}{\begin{figure}\begin{center}}{\end{center}\end{figure}}
    

    Note: untested.

提交回复
热议问题