在 TeX 中重新創建 Kanye 的新專輯封面

在 TeX 中重新創建 Kanye 的新專輯封面

肯伊威斯特剛剛發布了他的新專輯的封面。對我來說,它看起來像是一個帶有嚴重錯誤的標題的圖形。有人可以在 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}

在此輸入影像描述

相關內容