使用 KOMA 脚本/pdflatex 设置自定义纸张尺寸

使用 KOMA 脚本/pdflatex 设置自定义纸张尺寸

我尝试设置具有一些自定义纸张尺寸的文档(假设高度为 24 厘米,宽度为 17 厘米),文件的开头如下所示:

\documentclass[liststotoc,bibtotoc,headsepline]{scrreprt}%draft

\input{xx_common_include}

\begin{document}

其中 xx_common_include 看起来像这样(提取)...

%------------------------------------
% KOMA Stuff
%------------------------------------

% General KOMAoptions

\KOMAoptions
  {
    fontsize=11pt,
    paper=a4,
    pagesize=pdftex
    %cleardoublepage=plain,
  }

% Headers

\usepackage{scrpage2} 
\pagestyle{scrheadings} 
\clearscrheadfoot
\ihead{\leftmark}
\ohead{\thepage}
\automark[section]{chapter}

现在,显然“paper=a4”这一行应该有所不同,以便使文档符合所需大小。我该如何实现呢?

答案1

你可以这样做

paper=5cm:3cm,
DIV=calc,

相关内容