如何模仿漫画《守望者》中的这个页面风格?

如何模仿漫画《守望者》中的这个页面风格?

基本上,我想创建一个页面,使其看起来像一张纸(带有文字)在另一张纸(也带有文字)上的“照片”。

这在 LaTeX 中可行吗?如果可以,怎么做?我没有 MWE,因为我不知道如何开始创建这样的东西……也许用tikz

以下是漫画《守望者》中这种风格的几个例子:

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

答案1

marmot建议使用tcolorboxfor boxes,我将添加它的tcbposter库来控制页面上的框定位。与其他解决方案相比,这个库的优势在于poster,你可以将其用于任何海报尺寸

\documentclass{article}

\usepackage[most]{tcolorbox}

\begin{document}

\begin{tcbposter}[
poster = {%showframe,
            height=3cm,spacing=2mm,rows=2},
boxes = {colframe=blue!50!black,colback=blue!50,colupper=yellow!50},
]
\posterbox{name=A,column=1,below=top}{First box}
\posterbox[rotate=-5]{name=B,column=1,between=A and bottom}{Second box}
\posterbox{name=C,column=2,above=bottom}{Third box}
\posterbox[rotate=-15]{name=D,column=2,between=top and C,span=2}{Fourth box}
\posterbox[colback=red, remember as=X]{name=E,column=3,between=top and bottom}{Fifth box}
\end{tcbposter}\\[2cm]
\begin{tcbposter}[
poster = {%showframe,
            height=4cm,spacing=1mm,rows=2},
boxes = {colframe=blue!50!black,colback=blue!50,colupper=yellow!50},
]
\posterbox[remember as=A]{name=A,column=1,below=top, span=2}{First box}
\posterbox[rotate=5, colback=orange]{name=B,column=1,between=A and bottom}{Second box}
\posterbox{name=C,column=2,above=bottom}{Third box}
\posterbox[rotate=3]{name=D,column=2,between=top and C,span=2}{Fourth box}
\posterbox[colback=green, rotate=-5]{name=E,column=3,between=top and bottom}{Fifth box}
\end{tcbposter}

\tikz[remember picture, overlay] \draw[line width=1mm, cyan] (A.north) to[out=60,in=30] (X.south);

\end{document}

在此处输入图片描述

相关内容