乳胶中的纸张尺寸

乳胶中的纸张尺寸

我正在使用 Windows 8、Texmaker 4.5 和 Miktex 2.9。

在编译 LatexDvi2ps和 时ps2pdf,我遇到了纸张大小问题。我的 miktex 选项是 A4 纸张。编译时,dvi 和 ps 文件是 a4,但 pdf 是 letter。我使用ps2pdf -sPAPERSIZE#a4 %.ps %.pdf不会改变任何内容的选项。

当编译pdflatex时我确实有a4纸。

你能帮我在使用 ps2pdf 时获取一张 A4 纸吗?

谢谢

答案1

\documentclass{article}
\usepackage[dvips,a4paper]{geometry}
\begin{document}
    foo
\end{document}

pdf 中有 a4:

voss@shania:~$ pdfinfo zz.pdf
Title:          zz.dvi
Creator:        dvips(k) 5.996 Copyright 2016 Radical Eye Software
Producer:       GPL Ghostscript 9.18
CreationDate:   Tue Dec 20 20:02:50 2016
ModDate:        Tue Dec 20 20:02:50 2016
Tagged:         no
UserProperties: no
Suspects:       no
Form:           none
JavaScript:     no
Pages:          1
Encrypted:      no
Page size:      595 x 842 pts (A4)
Page rot:       0
File size:      3846 bytes
Optimized:      no
PDF version:    1.5

如果你的 DVI 配置有预设的字母格式,那么你可能需要一个

dvips -t unknown filename.dvi

相关内容