报告封面的旋转文本框

报告封面的旋转文本框

我的学校向我提供了以下报告封面模板,但该模板仅以 .ppt 格式存在。我希望制作它的 LaTeX 版本,但我不知道如何创建旋转的文本框以及如何将它们放在纸张的最边缘。

在此处输入图片描述

答案1

这是一个快速而粗略的解决方案。我只是添加了样本中所示的元素ppt。我没有进行精确测量。

我使用\node相对于页面角落或中心或相对于其他节点的定位创建了所有元素。

为了制作原始模板的精确副本,我建议您测量所有长度并提取正确的颜色值,并使用正确的字体。

\documentclass[11pt]{article}

\usepackage{todonotes}
\usepackage{tikz}
\usetikzlibrary{positioning, calc}

\renewcommand{\familydefault}{\sfdefault}

\begin{document}
  \begin{titlepage}
    \begin{tikzpicture}[remember picture, overlay]
        % Rotated boxes on the left
        \node at ($(current page.west)+(0,5)$) [fill=blue!25, rotate=90, anchor=north, minimum height=3cm, text width=5cm, align=left] (pw) {~~~~~\Large Project Work};
        \node [left=0cm of pw, minimum height=3cm, text width=8cm, rotate=90, anchor=east, align=right] {\textbf{NTNU}\\Norwegian University of\\Science and Technology\\Faculty of Engineering Science and Technology\\Departement of Energy and Process Engineering};

        % Title block
        \node at ($(current page.north)+(0,-5)$) (student) {\Large Student (your name)};
        \node [below=.5cm of student] (title) {\Huge Title};
        \node [below=.5cm of title] {Trondheim, MM YYYY};
        \node at ($(current page.center)+(2,-1)$) {\missingfigure[figheight=10cm, figwidth=15cm]{your image here}}; 

        % Ntnu Logo
        \node at ($(current page.south east)+(-2.5,1)$) [text width=4cm] (text) {\textbf{NTNU - Trondheim}\\Norwegian University of Science and Technology};
        \node [left=.5cm of text, rectangle, fill=blue!75!black, rounded corners, minimum size=1.5cm] (bluelogo) {};
        \node at (bluelogo) [rectangle, fill=white, minimum size=.75cm] (whitelogo) {};
        \node at (whitelogo) [circle, fill=blue!75!black, minimum size=.65cm] () {};        
    \end{tikzpicture}
  \end{titlepage}
\end{document}

渲染图像

答案2

在命令行上使用 documentclass scrbook; manual:。texdoc scrguiden使用 titlepage 环境。您需要 graphixc 包 ( texdoc graphixc),它提供了 rotatebox。我只需在 titlepage 上的 rotatebox 内使用一个图片环境即可。

相关内容