1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
% Manual, as well as usage example, for the titlepic.sty package.
% Run this through latex to see the output.
\documentclass[titlepage]{article}
\usepackage[cc]{titlepic} % Include the titlepic package.
% Creates a placeholder for the picture (no real picture is included in the package to keep it small).
% The syntax is \placeholder{width}{height}.
\newcommand\placeholder[2]{%
\noindent%
{\setlength{\fboxsep}{0pt}%
\framebox[#1]{%
\parbox{0pt}{\rule{0pt}{#2}}%
\parbox{#1}{\centering The picture goes here.}%
}%
}%
}
\title{\LaTeX{} \texttt{titlepic} Manual}
\author{Thomas ten Cate\thanks{\texttt{<ttencate@gmail.com>}}}
\date{August 5, 2008}
\titlepic{\placeholder{\textwidth}{0.75\textwidth}} % This is the magic command!
\begin{document}
\maketitle
\section{Introduction}
In \LaTeX, there is by default no way to put a picture on the title page or cover page that is produced by \verb$\maketitle$. Surprisingly, no package seemed to exist for this either, which is why I put together this very simple package named \verb$titlepic$.
\textbf{Note:} \verb$titlepic$ only works with the default document classes \verb$article$, \verb$report$ and \verb$book$.
\section{Installation}
There are two ways to install the package:
\begin{itemize}
\item Simply drop \verb$titlepic.sty$ in the same directory as your \verb$.tex$ source document. This is the easiest option for casual use.
\item Put \verb$titlepic.sty$ somewhere in your \verb$texmf$ tree and rehash. The details depend on your \TeX{} distribution. This gives you a system-wide installation.
\end{itemize}
\section{Usage}
Include the package as normal, with:
\begin{quote}
\verb$\usepackage{titlepic}$
\end{quote}
\noindent If you want to be able to include a picture, then you also need
\begin{quote}
\verb$\usepackage{graphicx}$
\end{quote}
\textbf{Note:} when you use the \verb$article$ document class, be sure to pass it the \verb$titlepage$ option (\verb$\documentclass[titlepage]{article}$), because articles do not have a title page by default.
Then, along with the usual \verb$\title$, \verb$\author$ and \verb$\date$, put a command like the following:
\begin{quote}
\verb$\titlepic{\includegraphics[width=\textwidth]{cover.png}}$
\end{quote}
The argument to \verb$\titlepic$ will usually be an \verb$\includegraphics$ command, which produces a picture. You can change the size using the optional argument to \verb$\includegraphics$, for example, \verb$width=0.7\textwidth$. This will make the picture be 70\% as wide as the text, and scales the height accordingly.
In fact, the argument to \verb$\titlepic$ can actually be pretty much anything. The output produced by this argument will be typeset centred on the title page when you invoke \verb$\maketitle$.
\section{Package options}
There are three optional arguments that control the vertical layout of the title page:
\begin{description}
\item[\tt{tt}]
Put both the title (and author, and date) and the picture at the top of the page, separated by a fixed amount of space.
\item[\tt{tc}]
Put the title at the top of the page as with tt, but centre the picture vertically on the page.
\item[\tt{cc}]
Separate the title and the picture by a fixed amount of space, and centre both together vertically on the page.
\end{description}
\section{Example}
Here is a full example of what your document could look like.
\begin{verbatim}
% Be sure to pass titlepage to the article class
\documentclass[titlepage]{article}
% Centre the picture and the title vertically with cc
\usepackage[cc]{titlepic}
% For \includegraphics
\usepackage{graphicx}
\title{Example}
\author{John Doe}
\date{\today}
% Now, put a picture on the title page!
\titlepic{\includegraphics[width=\textwidth]{picture.png}}
\begin{document}
\maketitle
...
\end{document}
\end{verbatim}
\end{document}
|