graphicx includegraphics 全局居中

graphicx includegraphics 全局居中

是否可以全局设置\includegraphics图片在页面水平居中?

我阅读了手册并看到一些不熟悉的全局设置键:\setkeys{Gin}{width=0.75\textwidth}

答案1

我假设您的页边距在页面上是对称的。如果不是,请说明。

\documentclass{article}
\usepackage[showframe,pass]{geometry}
\usepackage{graphicx}
\begin{document}
\centerline{\includegraphics[width=.3\textwidth]{example-image}}

\centerline{\includegraphics[width=1.1\textwidth]{example-image}}
\end{document}

在此处输入图片描述

答案2

\includegraphics\parbox与大多数类似的 LaTeX 结构(如 等)一样tabular,它不是显示结构,而只是一个内联框,因此定位方式与大写字母相同,没有控制其位置的机制。您可以将图形居中的方式与将单词居中的方式相同,将其放置在\centering或 的范围内\begin{center}...\end{center}

相关内容