diff options
author | Karl Berry <karl@freefriends.org> | 2011-12-18 23:02:56 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-12-18 23:02:56 +0000 |
commit | 675811396614fc0e05db547c2bde784807aa0b3d (patch) | |
tree | b7897de0916519e9dfd75fd581b6c480438f1b8c /Master/texmf-dist/tex/latex/authoraftertitle | |
parent | 679b298d0d3734a28c8e1ffd8ad5a21308149416 (diff) |
authoraftertitle restored, now pd
git-svn-id: svn://tug.org/texlive/trunk@24863 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/authoraftertitle')
-rw-r--r-- | Master/texmf-dist/tex/latex/authoraftertitle/authoraftertitle.sty | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/authoraftertitle/authoraftertitle.sty b/Master/texmf-dist/tex/latex/authoraftertitle/authoraftertitle.sty new file mode 100644 index 00000000000..47b87a27f65 --- /dev/null +++ b/Master/texmf-dist/tex/latex/authoraftertitle/authoraftertitle.sty @@ -0,0 +1,32 @@ +% Author Matthias Bilger +% License: This package is released to the Public Domain + +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{authoraftertitle}[2006/10/14 v0.9 package for Author after Titlepage] +%Author +\newcommand\Originalauthor{} +\let\Originalauthor\author +\renewcommand*{\author}[1]{% + \Originalauthor{#1}% + \renewcommand*{\MyAuthor}{#1}% +} + +\newcommand*{\MyAuthor}{} + +%Title +\newcommand\Originaltitle{} +\let\Originaltitle\title +\renewcommand*{\title}[1]{% + \Originaltitle{#1}% + \renewcommand*{\MyTitle}{#1}% +} +\newcommand*{\MyTitle}{} + +%Date +\newcommand\Originaldate{} +\let\Originaldate\date +\renewcommand*{\date}[1]{% + \Originaldate{#1}% + \renewcommand*{\MyDate}{#1}% +} +\newcommand*{\MyDate}{} |