mirror of
https://github.com/flynx/photobook.git
synced 2025-10-28 18:00:10 +00:00
45 lines
892 B
TeX
45 lines
892 B
TeX
%----------------------------------------------------------------------
|
|
|
|
\documentclass[
|
|
layoutmode=block,
|
|
% page size...
|
|
blockwidth=240mm, blockheight=220mm,
|
|
bleed=4mm,
|
|
gutteroffset=5mm,
|
|
bindingoffset=0mm,
|
|
% image block configuration...
|
|
imageblockwidth=0.98, imageblockheight=0.98,
|
|
imageblockoffsettop=0,
|
|
% misc...
|
|
9pt,final,openany
|
|
]{photobook}
|
|
|
|
\usepackage{lipsum}
|
|
\usepackage{ragged2e}
|
|
|
|
|
|
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
\edef\TestImage{landscape}
|
|
|
|
|
|
|
|
%----------------------------------------------------------------------
|
|
\begin{document}
|
|
|
|
% force what's next to left page of spread...
|
|
\cleartoleftpage
|
|
|
|
% text...
|
|
\begin{page}
|
|
\lipsum[1-3]
|
|
\end{page}
|
|
|
|
% image...
|
|
\ImagePage{}{\TestImage}
|
|
|
|
|
|
|
|
%----------------------------------------------------------------------
|
|
\end{document} % vim:set ts=4 sw=4 :
|