適合或壓縮剪貼簿中的文字

適合或壓縮剪貼簿中的文字

我想使用 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 發生衝突。奇怪的是作物包引起了衝突。

%\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 磅,但確實不可讀。還有其他建議或可能有幫助的軟體包嗎?

答案1

有時,擠壓不值得這麼麻煩。

邁克爾·凱恩 ScrbookSqueeze

\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}

相關內容