模板/封面

模板/封面

我正在寻找模板这个文件

在此处输入图片描述

如何创建这样的封面?

答案1

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{tikz,eso-pic,contour}
\contourlength{.4pt}
\begin{document}
\thispagestyle{empty}

\newcommand{\TITLE}{%
\sffamily
{\Large Stockholms universitet | Institutionen f\"or naturgeografi\\[80mm]}
{\Huge\bfseries\color{orange}\contour{orange}{Scientific writing with \LaTeX}\\[50mm]}
{\huge\bfseries Peter Jansson}
}

\AddToShipoutPictureFG*{%
\begin{tikzpicture}[overlay]
\node (A) at (current page.south west) {};
\node (B) at ([xshift=40mm] current page.north west) {};
\node (C) at ([xshift=40mm,yshift=-50mm] current page.north west) {};
\fill[blue!50!black] (A) rectangle (B);
\node[anchor=north west,outer sep=5mm,inner sep=0pt] at (C) {\parbox{15cm}{\TITLE}};
\end{tikzpicture}}
\hbox{}\newpage
\end{document}

在此处输入图片描述

相关内容