diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/titlepic/titlepic-manual.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/titlepic/titlepic-manual.tex | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/Master/texmf-dist/doc/latex/titlepic/titlepic-manual.tex b/Master/texmf-dist/doc/latex/titlepic/titlepic-manual.tex index dec9ff4100e..d8e5d2a37b6 100644 --- a/Master/texmf-dist/doc/latex/titlepic/titlepic-manual.tex +++ b/Master/texmf-dist/doc/latex/titlepic/titlepic-manual.tex @@ -18,8 +18,11 @@ } \title{\LaTeX{} \texttt{titlepic} Manual} -\author{Thomas ten Cate\thanks{\texttt{<ttencate@gmail.com>}}} -\date{August 5, 2008} +\author{ + Thomas ten Cate\thanks{\texttt{<ttencate@gmail.com>}} \\ + with contributions from \\ + Denis Bitouz\'e} +\date{March 14, 2017} \titlepic{\placeholder{\textwidth}{0.75\textwidth}} % This is the magic command! \begin{document} @@ -30,14 +33,15 @@ 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$. +\textbf{Note:} \verb$titlepic$ only works with the default document classes \verb$article$, \verb$report$ and \verb$book$. However, it works both with the \verb$titlepage$ and \verb$notitlepage$ document class options. \section{Installation} -There are two ways to install the package: +There are several 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. + \item Install it from \TeX{} Live or MiK\TeX. \end{itemize} \section{Usage} @@ -54,8 +58,6 @@ Include the package as normal, with: \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} @@ -84,10 +86,10 @@ There are three optional arguments that control the vertical layout of the title Here is a full example of what your document could look like. \begin{verbatim} -% Be sure to pass titlepage to the article class +% Pass titlepage to the article class \documentclass[titlepage]{article} -% Centre the picture and the title vertically with cc +% Centre the picture and the title vertically with cc (only works with titlepage mode) \usepackage[cc]{titlepic} % For \includegraphics @@ -109,4 +111,9 @@ Here is a full example of what your document could look like. \end{document} \end{verbatim} +\section{Contributing} + +Contributions are welcome! Send a pull request on GitHub here:\\ +\verb$https://github.com/ttencate/titlepic$ + \end{document} |