回忆录中的几何纸张大小:LaTeX 与 PDFLaTeX

回忆录中的几何纸张大小:LaTeX 与 PDFLaTeX

我一直在寻找问题的答案,但搜索没有找到任何具有相同问题的主题,因此我的问题如下:我已使用该memoir软件包创建了一个文档。原稿尺寸应为 25 x 18 厘米,边距边框 0.5 厘米。纸张将裁切为 24 x 17 厘米,出血是为了避免裁切纸张后整页图片周围出现白色边框。

当我使用 LaTeX 构建到 PS 时,下面的代码运行完美。然后使用 Acrobat Distiller 将 ps 转换为 pdf。但是,使用此序列时,图片必须为 eps 格式。

但是,我想包含 jpeg 或 png(照片),因此我想用 来构建它pdflatex。但是,当使用 构建下面的代码时,pdflatex页面大小不正确:它较小(即 为 6.69x9.45 英寸,而pdflatexLaTeX 为 7.09x9.84 英寸)。

我尝试排除我使用的软件包以找出哪些是不兼容的,但我没能找出导致问题的原因。有人知道吗?

顺便说一句:起初我只是将 jpg 转换为 eps,然后用 LaTeX 构建 pdf。但是,图像质量太差,因此,我想使用pdflatex

    \documentclass[10pt,showtrims,openright]{memoir}
    \usepackage{eso-pic}% For prechapterpics that have to bleed over the trims
    \usepackage{graphicx} 
    \usepackage{geometry} 
    \usepackage[dutch,british]{babel} 
    \usepackage{booktabs} 
    \usepackage{eurosym} 
    \usepackage{lscape} 
    \usepackage[authoryear]{natbib}  
    \usepackage{threeparttable}   
    \usepackage{multirow}  

    \setstocksize{25cm}{18cm} 
    \settrims{0.5cm}{0.5cm}
    \geometry{paperwidth=17cm, paperheight=24cm}
    \setlrmarginsandblock{3cm}{2cm}{*}%%%% 
    \setulmarginsandblock{2.5cm}{3cm}{*}
    \checkandfixthelayout

    %%%%%%%%%%%%%%%% Newcommand to put the chapterimage in before each chapter
    \newcommand\chapimage[1]{%
    \cleartoverso 
    \noindent%
    \AddToShipoutPictureBG*{% Add picture to current page
      \AtStockLowerLeft{% Add picture to lower-left corner of paper stock
    \includegraphics[keepaspectratio=true, width=\stockwidth]{art/#1}}}%
    \clearpage}%%end Newcommand 

    \title{Title thesis}
    \author{Authorname}
    \date{}

    \begin{document}
    \maketitle
    \chapimage{testimage}  
    \chapter{Title of first chapter}
    \end{document}

答案1

我猜这就是你想要的(加载geometry):

\setstocksize{25cm}{18cm} %Finale
\settrimmedsize{24cm}{17cm}{*}
\settrims{0.5cm}{0.5cm}
\setlrmarginsandblock{3cm}{2cm}{*}%%%%
\setulmarginsandblock{2.5cm}{3cm}{*}
\checkandfixthelayout
\fixpdflayout

memoir由says打印的摘要

******************************************************
Stock height and width: 711.3189pt by 512.1496pt
Top and edge trims: 14.22636pt and 14.22636pt
Page height and width: 682.86613pt by 483.69684pt
Text height and width: 526pt by 341pt
Spine and edge margins: 85.35826pt and 56.9055pt
Upper and lower margins: 71.13188pt and 85.73425pt
Headheight and headsep: 12pt and 18.06749pt
Footskip: 25.29494pt
Columnsep and columnseprule: 10pt and 0pt
Marginparsep and marginparwidth: 7pt and 128pt
Sidecapsep and sidecapwidth: 7pt and 128pt
Sidebarhsep and sidebarwidth: 7pt and 128pt
Sidebarvsep and sidebartopsep: 12pt and 0pt
Sidebarheight: 548.39996pt
Sidefoothsep and sidefootwidth: 7pt and 128pt
Sidefootvsep and sidefootheight: 12pt and 548.39996pt
******************************************************

相关内容