在半纸格式中设置 KOMA-Script 文档

在半纸格式中设置 KOMA-Script 文档

我需要将信纸大小的文档调整为法律纸张大小的一半。我正在使用 KOMA-Script 类scrbook,但无法使用它typarea。我肯定做错了什么。我阅读此帖询问之前。这是我的 MWE:

\documentclass[headings=big,bibliography=totoc]{scrbook}
\usepackage[headinclude=false,footinclude=false,paper=legal,landscape,paper=35.6cm:21.6in,DIV=10]{typearea}
\begin{document}
\frontmatter
\subject{Thesis}
\title{Vertical borderline}
\author{Me}
\date{\today}
\maketitle
\end{document}

我需要的是一份有半张法律纸张大小的文档,用于在一张法律纸张上打印两页。有什么建议吗?

答案1

使用以下 MWE,您将获得一个横向、半合法大小的文档,该文档具有scrbook基于给定代码的 KOMA-Script 类。请参阅标有 ​​的重要代码更改<========

\documentclass[%
  headings=big,
  bibliography=totoc,
  headinclude=false, % <================================================
  footinclude=false, % <================================================
% paper=21.6cm:35.6cm, % Legal   8 1⁄2 × 14 inch    216 × 356 mm
  paper=10.8cm:17.8cm, % legal/2 landscape  paper=width:heigth <========
  paper=landscape, % <==================================================
  DIV=10           % <==================================================
]{scrbook}

%\areaset{10cm}{17cm} % {width}{height} <==================== without DIV
\usepackage{showframe} % <=========================== to show typing area

\begin{document}

\frontmatter
\subject{Thesis}
\title{Vertical borderline}
\author{Me}
\date{\today}
\maketitle

Text text text text text % <================================ for 2nd page

\end{document}

得到的 pdf 格式如下:

在此处输入图片描述

请注意当前的KOMA-Script 版本使用paper=width:height 反而在早期版本中paper=height:width。请参阅给定的 MWE 中的我的评论。

相关内容