圣诞清单/目录

圣诞清单/目录

我对 LaTeX 还不太熟悉,我认为一个有趣的项目是创建一个看起来像购物目录的圣诞节清单。就像这样:

圣诞目录

我该怎么做?如果有好的模板或示例,我将不胜感激!

答案1

LaTeX 是所以不是为这种文档设计的。但如果必须,就必须。

在此处输入图片描述

\documentclass{article}
\usepackage{graphicx}
\begin{document}

\setlength\unitlength{1cm}
\vspace*{\fill}
\noindent
\begin{picture}(0,0)\bfseries\large
\put(4,3){\includegraphics{house}}
\put(0.5,5){\parbox{5cm}{\raggedright
If you are feeling generous 
I'd like a house, preferably one with architectural
design integrity, like this}}

\put(0,17){\includegraphics{car}}
\put(8,21.5){\parbox{3cm}{\raggedright
I'd like a \textbf{Car},
preferably with four wheels.}}

\put(0,10){\includegraphics{computer}}
\put(0,9){\parbox{6cm}{\raggedright
A new \textbf{computer}
would be nice. (I won't need vim)}}

\put(8,12){\includegraphics{cake}}
\put(9,11.5){\parbox{3cm}{\raggedright
\textbf{Cake}, of course}}


\end{picture}
\end{document}

相关内容