使图片没有 LaTeX 边距

发布于 2024-07-29 03:43:22 字数 1460 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

昵称有卵用 2024-08-05 03:43:22

直接调整各种变量或使用geometry

LaTeX使用了很多变量来描述页面,所以直接设置它们很麻烦,我真的推荐使用geometry

请记住,有一个 1 英寸的无声边距。 此外,您实际可以打印到页面边缘的距离取决于您的打印机。 大多数实际上不会让你到达任何一边的边缘。

Either diddle the various variables directly or use the geometry package.

LaTeX uses a lot of variable to describe the page, so setting them directly is a hassle, I really reccomend using geometry.

And remember there is a silent 1 inch margin. Moreover how close to the edge of the page you can actually print is dependent on you printer. Most won't actually let you get to the edge on any side.

旧伤还要旧人安 2024-08-05 03:43:22

changepage 包可用于本地更改内容所在区域的大小。.sty 文件中的文档,直到我开始编写真正的手册。

The changepage package can be used to locally change the size of the area that content is put in. Documentation within the .sty file until I get around to writing a real manual.

一袭白衣梦中忆 2024-08-05 03:43:22

我以前也做过这件事。 代码如下:

\newenvironment{changemargin}{%
 \begin{list}{}{%
\setlength{\textwidth}{\paperwidth}
\setlength{\textheight}{\paperheight}
%\setlength{\oddsidemargin}{-1in}
%\setlength{\evensidemargin}{-1in}
\setlength{\topmargin}{-1in}
\setlength{\topsep}{-1in}%
   \setlength{\leftmargin}{-1.5in}%
   \setlength{\rightmargin}{-1.5in}%
   \setlength{\listparindent}{\parindent}%
   \setlength{\itemindent}{\parindent}%
   \setlength{\parsep}{\parskip}%
 }%
\centering%
\item[]%
}{\end{list}}

在相关页面上,我还使用了 \clearpage\pagestyle{empty}enlargethispage{...}

I did this exact thing before. Here's the code:

\newenvironment{changemargin}{%
 \begin{list}{}{%
\setlength{\textwidth}{\paperwidth}
\setlength{\textheight}{\paperheight}
%\setlength{\oddsidemargin}{-1in}
%\setlength{\evensidemargin}{-1in}
\setlength{\topmargin}{-1in}
\setlength{\topsep}{-1in}%
   \setlength{\leftmargin}{-1.5in}%
   \setlength{\rightmargin}{-1.5in}%
   \setlength{\listparindent}{\parindent}%
   \setlength{\itemindent}{\parindent}%
   \setlength{\parsep}{\parskip}%
 }%
\centering%
\item[]%
}{\end{list}}

On the page in question, I also used \clearpage, \pagestyle{empty} and enlargethispage{...}.

岛歌少女 2024-08-05 03:43:22

您可以将图形的宽度指定为大于 \textwidth。

我认为 includegraphics 是非剪裁版本,(与 includegraphics* 相反)

我认为只要垂直尺寸适合页面,这就可以工作。

否则我会在 CTAN 上查找允许您动态更改边距的软件包。

You can specify the width of the figure to be bigger than \textwidth.

I think includegraphics is the non-clipping version, (as opposed to includegraphics*)

I assume this would work as long as the vertical size would fit on the page.

Otherwise I'd look on CTAN for packages which allow you to change the margins on the fly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文