我想使用 scrbook 创建一本大众市场的平装书。这本书大约有 400 页,尺寸为 6x9。我希望文本仍然可读,但我希望这个版本的页数尽可能少。推荐使用哪些软件包,或者可以使用哪些技巧/窍门来最好地实现此目的?
我尝试在网站上搜索答案,但陷入了无限循环的验证码问题。前两三次都显示图片,现在我只需要勾选一个框,然后就会收到另一个验证码。因此才有这个问题。
\documentclass[fontsize=10pt,headings=small,BCOR=.25mm,openany]{scrbook}
\usepackage[paperheight=6.88in,paperwidth=4.25in, left=1cm]{geometry}
% will the binding correction affect the margins?
\addtokomafont{disposition}{\rmfamily}
\usepackage[english]{babel}
\usepackage[DIV=15]{typearea}
\usepackage{fontspec,xltxtra,xunicode}
\defaultfontfeatures{Mapping=tex-text}
\setromanfont[Mapping=tex-text]{Times NR Condensed}
\linespread{.9}
\raggedbottom
\begin{document}
blah blah
\end{document}
删除了以下几行,因为 LaTeX 报告它们与 scrbook 发生冲突。crop 包导致冲突,这很奇怪。
%\usepackage[small,compact]{titlesec} %added to save space
%\enlargethispage* %added to save space? didn’t work
%\enlargethispage{3\baselineskip}
%\usepackage[cam,a4,center]{crop}
我尝试将字体缩小到 8 pt,但确实无法阅读。还有其他建议或可能有帮助的软件包吗?
答案1
有时挤压不值得这么麻烦。
\documentclass[paper=4.25in:6.88in,pagesize=auto,fontsize=10pt,headings=small,BCOR=.25mm,openany,DIV=16]{scrbook}
\usepackage{showframe}
\addtokomafont{disposition}{\rmfamily}
\usepackage[english]{babel}
\linespread{.9}
\raggedbottom
\RedeclareSectionCommand[beforeskip=0pt]{chapter}
\usepackage{blindtext}
\begin{document}
\blinddocument
\blinddocument
\blinddocument
\end{document}