我怎样才能使我的图像比 \textwidth 宽 0.5 厘米?

我怎样才能使我的图像比 \textwidth 宽 0.5 厘米?

与我的问题相关的一个问题是这个问题,其中讨论了如何将对象缩放到文本宽度的一定比例。但是,如果我想使对象比文本宽度宽 0.5 厘米,该怎么办?

我试过用,但length = \textwidth + 0.5似乎不起作用

答案1

该包的使用changepage很简单。例如:

\documentclass{article}
%---------------- Show page layout. Don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%
\usepackage{lipsum}% For dummy text. Don't use in a real document

\usepackage{graphicx}
\usepackage[strict]{changepage}

\begin{document}
    \begin{figure}[ht]
\begin{adjustwidth}{}{-5mm} % <--- new
    \includegraphics[width=\linewidth]{example-image-duck}
\end{adjustwidth}
    \end{figure}
\lipsum[1][1-4]
\end{document}

\lipsum[1][1-4]

(红线表示(部分)页面布局)

答案2

例如在 OpTeX 中:

\line{\hss \picw=\dimexpr\hsize+0.5cm \inspic{image.jpg}\hss}

相关内容