如何用 LaTeX 制作大堂卡?

如何用 LaTeX 制作大堂卡?

尝试做出这样的事情:

大堂卡

带有小白边或根本没有白边。如果我选​​择完全去掉白边,它将看起来类似于此:

大堂卡

我已经尝试过该wallpaper软件包,但includegraphics……我无法让文本的位置正常工作。我决定不发布 MWE,因为我相信这只会让事情变得更加混乱。希望有人能帮忙!

编辑:根据请求添加 MWE。您需要一个名为FOO(.jpg/png/pdf) 的图像。

\documentclass{article}
\usepackage[paperwidth=5.5in, paperheight=9in]{geometry}
\usepackage{graphicx}

\begin{document}
\pagestyle{empty}
\centerline{\includegraphics[keepaspectratio, width=\paperwidth]{FOO}}

Text I want under the image

\end{document}

答案1

该解决方案使用三个minipage,并使用可选参数b使它们在底部彼此对齐。

请注意,当仅指定 的宽度或高度时includegraphics,使用keepaspectratio是不必要的。

输出

在此处输入图片描述

代码

\documentclass{article}

\usepackage{graphicx}
\usepackage[margin=1cm,top=1cm,bottom=1cm]{geometry}
\usepackage{parskip}
\pagestyle{empty}
\begin{document}
\scshape

\includegraphics[width=\linewidth,height=0.85\textheight]{example-image-a}
\centering%
\large%
Junko Minori

\vfill

\begin{minipage}[b]{.3\textwidth}
  {\scriptsize%
  written and directed by}

  \small%
  white dolemite

  \& alessandro `saseko' motajima
\end{minipage}%
\hfill%
\begin{minipage}[b]{.3\textwidth}
  \centering%
  \resizebox{!}{0.8cm}{sendo}%
  \vspace{8pt}

  \resizebox{!}{0.8cm}{senshi}



\end{minipage}%
\hfill%
\begin{minipage}[b]{.3\textwidth}
  \raggedleft%
  \hfil\includegraphics[height=2cm]{example-image-b}%
\end{minipage}

\small%
a violent movie association motion picture feature

\end{document}

相关内容