论文贴纸

论文贴纸

我想在论文首页上贴上“考官副本”的标签。该怎么做?

答案1

仅使用tikz(如果出现错误,请不要忘记编译两次):

\documentclass{book}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
  \begin{titlepage}
    \begin{tikzpicture}[remember picture, overlay]
      \node[draw,minimum width=4in,rotate=-45,fill=orange,text=blue,font=\LARGE] at ($(current page.north east) + (-0.9in,-0.9in)$) {Examiner's Copy};
    \end{tikzpicture}
    \centering
    \vspace*{2cm}
    \Large Thesis title
  \end{titlepage}

\end{document}

在此处输入图片描述

答案2

一种可能性是使用background包及其firstpage选项;您可以更改属性(位置、颜色、不透明度、添加文本的角度):

\documentclass[titlepage]{article}
\usepackage[firstpage=true]{background}
\usepackage{lipsum}

\backgroundsetup{
scale=2,
angle=0,
opacity=1,
color=red!70!black,
contents={\tikz\node[draw,rounded corners,font=\Huge] {Examiners Copy};},
vshift=2.5cm
}

\title{The Title}
\author{The Author}

\begin{document}
\maketitle

\lipsum[1-40]

\end{document}

在此处输入图片描述

变体:

\documentclass[titlepage]{article}
\usepackage[firstpage=true]{background}
\usepackage{lipsum}

\backgroundsetup{
scale=2,
angle=90,
opacity=1,
color=cyan!70!black,
contents={\tikz\node[draw,rounded corners,font=\sffamily\Huge,fill=orange!10] {Examiners Copy};},
vshift=2.5cm
}

\title{The Title}
\author{The Author}

\begin{document}
\maketitle

\lipsum[1-40]

\end{document}

在此处输入图片描述

答案3

虽然我喜欢其他答案,但仅供参考,有一个名为的包draftwatermark可以让你放置背景文本。

  • firstpage如果您希望标记仅出现在第一页,请使用全局选项。
  • \SetWatermarkColor[rgb]{1,1,0}可以改变颜色。否则,在灰度中,选项\SetWatermarkLightness{0.7}会改变灰度值。
  • 使用以下方式更改标记的比例\SetWatermarkScale{3}
  • 并且文本\SetWatermarkText{Examiners Copy}

全部一起:

\documentclass{article}
\usepackage{lipsum}

\usepackage[firstpage]{draftwatermark}
% Use the following to make modification
\SetWatermarkColor[rgb]{1,1,0}
\SetWatermarkAngle{45}
\SetWatermarkScale{3}
\SetWatermarkText{Examiners Copy}

\title{Lorem ipsum}
\author{O. Castillo-Felisola}

\begin{document}
\maketitle

\lipsum[1-5]

\end{document}

此代码产生:

在此处输入图片描述

干杯!

答案4

eso-pic它还可以使用我通常用于在页面上定位任意内容的旧包:

 \documentclass[12pt,ngerman]{scrreprt}

 \usepackage{eso-pic,rotating,graphicx}
 \usepackage{blindtext}

 \author{John Doe}
 \title{Some Thesis}

 \begin{document}

 \AddToShipoutPicture*{\put(200,200){\rotatebox{45}{\scalebox{3}{Examiner's copy}}}}
 \maketitle


 \blindtext

 \end{document}

欧洲南方天文台

相关内容