答案1
和bookcover
类,您可以完整设计封面及其所有组件:封面、封底、书脊和封面。
一个例子:
\documentclass[marklength=0mm,
bleedwidth=0mm,
spinewidth=20mm]{bookcover}
\usepackage{lmodern}
\begin{document}
\setbookcover{bgcolor}{whole}{%
color=gray!80!brown!30,
}
%back cover
\setbookcover{fgfirst}{back}{%
\vfill
\hfill
\resizebox{100mm}{!}{%
\rotatebox{-90}{\textsf{\textbf{\color{white}{\parbox{10cm}{\raggedright STOP SAYING\\ I WILL\\ START DOING}}}}}}
%\vfill
}
%front cover
\setbookcover{fgfirst}{front}{%
%\vfill
\resizebox{100mm}{!}{%
\rotatebox{-90}{\textsf{\textbf{\color{white}{\parbox{10cm}{\raggedright STOP SAYING\\ I WILL\\ START DOING}}}}}}
%\vfill
}
%spine
\setbookcover{fgfirst}{spine}{
\vfill
\centering
\resizebox{10mm}{!}{
\rotatebox[origin=c]{-90}{\textsf{\textbf{\color{white}Stop saying I will start doing}}}}
\vfill}
\makebookcover
\end{document}
答案2
像这样吗?
\documentclass[12pt]{article}
\usepackage[showframe, b5paper]{geometry}%
\usepackage{classico}
\usepackage{adjustbox}
\usepackage[table, x11names]{xcolor}
\usepackage{pagecolor}
\begin{document}
\newgeometry{margin = 0pt, noheadfoot}
\begin{titlepage}
\pagestyle{empty}\newpagecolor{Khaki4}
\rotatebox[origin=lt]{-90}{
\adjustbox{width=\paperheight}{\sffamily\Huge\bfseries\color{LightGoldenrod1}%
\begin{tabular}{l}%
STOP SAYING \\[-0.7ex]
I WILL \\[-0.7ex]
START DOING\\[-0.5ex]\end{tabular}}}
\end{titlepage}
\end{document}