如何创建 x,y 尺寸的纸张?

如何创建 x,y 尺寸的纸张?

如何在乳胶上创建 A1 尺寸的纸张?或者 ax,y(以厘米为单位)尺寸的纸张?

在 \documentclass 中似乎没有此选项。我\documentclass{standalone}也需要使用该包(打印出一些公式)。

我想创建一张尺寸为 x 和 y 厘米的纸张。可以是 A1 尺寸的纸张(维基百科) 也认为这对我来说很好。

我喜欢这个关联但我无法改变\documentclass

对于其他感兴趣的用户

如何使用没有背景且具有指定维度的乳胶生成独立方程(公式)?

使用以下代码(Bayes_theorem.tex)

\documentclass{standalone}

\usepackage[left=0cm,top=0cm,right=0cm,nohead,nofoot]{geometry}
\usepackage{varwidth}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{amsmath, amssymb, graphics, setspace}
\newcommand{\mathsym}[1]{{}}
\newcommand{\unicode}[1]{{}}
\newcounter{mathematicapage}

\geometry{
paperwidth=12cm,
paperheight=30cm,
margin=0cm
}
\begin{document}\sloppy
\begin{equation*}
\resizebox{1.0 \textwidth}{!} 
{
$
  P\left(H_h|E_e\right)=\frac{P\left(E_e|H_h\right)P\left(H_h\right)}{P\left(E_e\right)}
$
}
\end{equation*}

\end{document}

, 跑步:

$pdflatex Bayes_theorem.tex

然后

$convert -geometry 4800x -density 4000 Bayes_theorem.pdf -quality 90 Bayes_theorem.png

然后就会出现这个没有背景的美丽公式:

贝叶斯定理

这是在几位社区用户的帮助下实现的问题它本身和其他12

非常感谢。

答案1

你应该使用包裹geometry

在此处输入图片描述

笔记:

  • \sloppy用于放宽间距要求,以适应较小的宽度而不会溢出到边距。实际文档中应该不需要。请参阅为什么文本超出了指定的线宽?
  • [showframe]用于显示边距的选项
  • 要查看布局,还可以尝试在 后\usepackage{layout}添加。\layoutbegin{document}

代码:

\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{lipsum}

\geometry{
paperwidth=6cm,
paperheight=4cm,
margin=0.5cm
}
\begin{document}\sloppy
\lipsum[1]
\end{document}

答案2

\usepackage[a1paper]{geometry}

使用当前geometry包是可能的。

相关内容