需要帮助创建 PDF 模板

需要帮助创建 PDF 模板

我找到了这个 PDF,觉得用它制作一个模板是个好主意。我对 LaTeX 不太在行,所以如果你能帮助我就太好了。以下是 CV 文档的链接:

简历 PDF 链接

它有 4 个盒子 - 三个是颜色,一个是图片。我知道如何制作彩色盒子:

\usepackage{framed, color}
 \colorbox{green}{Text}

但是我如何才能让它们处于正确的位置,并具有正确的颜色呢?我如何才能让图像处于这个位置呢?如何让绿线出现在左侧框中呢?我应该用它来调整字体大小吗?

    \documentclass[11pt]{report}
\usepackage{mathptmx}
\usepackage{anyfontsize}
\usepackage{t1enc}
...
{\fontsize{50}{60}\selectfont Foo}{\fontsize{5}{6}\selectfont bar!}

{\Huge Foo}{\tiny bar!}

如果你能帮我的话就太好了。我会学到很多东西,将来也能做出这样的布局。所以请帮助 LaTeX 初学者 :-)

最小示例:

\documentclass[a4paper, 10pt]{memoir}

\usepackage{framed, color}%to make boxes and colours

\usepackage{t1enc}

\usepackage{anyfontsize}%manipulate with font size

\pagestyle{empty}

\usepackage[left=0cm,right=0cm,top=0cm,bottom=0cm]{geometry}


\begin{document}

%\begin{figure}
%\includegraphics[?????]{•}
%\end{figure}


\colorbox{grey}{Marie Muster}

\colorbox{grey}{\textsc{\textbf{Bewerbung}} als \textsc{\textbf{Assistentin}}\\ im \textbf{Bereich Biochemie}}

\colorbox{olive}{Am Musterweg 22\\
12345 Musterstadt\\
Telefon 0 25 06 / 12 34 56\\
E-mail: [email protected]}

\end{document}

这个最小的例子真的很小 - 但那是因为我是一个新的 LaTeX 用户,虽然阅读了很多内容,但理解的并不多。

如果有人帮助我会非常高兴,但请不要使用 XeLaTeX 或类似的东西。我只是在学习常见的 LaTeX :-) ... 如果我可以从这个项目中学到东西(并且当有人帮助我时)那就太好了。

答案1

这是一个没有的起点tikz(因此没有阴影)。

\documentclass[a4paper, 10pt]{memoir}

\usepackage{framed, xcolor}%to make boxes and colours

\usepackage[T1]{fontenc}
\usepackage{graphicx,fix-cm,kpfonts}

\usepackage{anyfontsize}%manipulate with font size

\pagestyle{empty}

\usepackage[left=0cm,right=0cm,top=0cm,bottom=0cm]{geometry}


\begin{document}
\sffamily
\noindent
\raisebox{-\fboxsep}{\includegraphics[width=\dimexpr3in+2\fboxsep\relax,height=\dimexpr3in+2\fboxsep\relax]{example-image-a}}%
\colorbox{gray!50}{\parbox[b][3in][b]{3in}{\fontsize{30}{36}\bfseries\scshape\textcolor{green}{M}arie \textcolor{green}{M}uster}}%
\par
\vspace{-0.3ex}
\noindent
\colorbox{black!70}{\parbox[b][3in][b]{3in}{%
\raggedleft
\textcolor{white}{\textbf{\textsc{\LARGE Bewerbung}} als \textbf{\textsc{\LARGE Assistentin}}}\\
\textcolor{green}{\rule{2in}{0.5pt}}\\
\textcolor{white}{im \textbf{Bereich Biochemie}}
}}%
\colorbox{olive}{\parbox[b][3in][t]{3in}{%
\color{white}
Am Musterweg 22\\
12345 Musterstadt\\
Telefon 0 25 06 / 12 34 56\\
E-mail: [email protected]
}}

\end{document}

在此处输入图片描述

相关内容