TeX로 Kanye의 새 앨범 커버를 재현해보세요

TeX로 Kanye의 새 앨범 커버를 재현해보세요

Kanye West가 방금 새 앨범의 커버를 공개했습니다. 나에게 그것은 끔찍하게 잘못된 캡션이 있는 그림처럼 보입니다. 누군가 TeX에서 이 이미지를 다시 만들 수 있습니까?

'파블로의 삶' 앨범 표지

답변1

글쎄요, 알겠습니다. 그의 이름조차 나를 지루하게 만듭니다

\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}
\def\myeightlines{\foreach \x in {0,...,7}{
  \node[font=\bfseries\sffamily] at (0,0.5*\x) {THE LIFE OF PABLO};}
}
\foreach \x/\y in {1/1,1/4.8,1/8,4.5/0.5,4.5/3}{
  \begin{scope}[shift={(\x+0.1*rand,\y+0.1*rand)}]
    \myeightlines
  \end{scope}
}
\end{tikzpicture}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보