diff options
author | Karl Berry <karl@freefriends.org> | 2013-02-18 23:56:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-02-18 23:56:20 +0000 |
commit | e43ae240f33296136cb498e6d9d0e9a55eba7493 (patch) | |
tree | d27190d27658569c1f62e632c1f30e96fa07de58 /Master/texmf-dist/tex/latex/contracard | |
parent | cdbdc383307e5585391076143f1a790aeacc220f (diff) |
contracard (18feb13)
git-svn-id: svn://tug.org/texlive/trunk@29156 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/contracard')
-rw-r--r-- | Master/texmf-dist/tex/latex/contracard/contracard.cls | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/contracard/contracard.cls b/Master/texmf-dist/tex/latex/contracard/contracard.cls new file mode 100644 index 00000000000..e473f047bfe --- /dev/null +++ b/Master/texmf-dist/tex/latex/contracard/contracard.cls @@ -0,0 +1,110 @@ +%% +%% This is file `contracard.cls', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% contracard.dtx (with options: `contracard') +%% +%% Copyright 2012 Samuel Whited +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 1.3c of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 1.3c or later is part of all distributions of +%% LaTeX version 2008/05/04 or later. +%% +\NeedsTeXFormat{LaTeX2e}[1995/12/01] +\ProvidesClass{contracard}[2013/02/17] +\AtEndOfClass{\LoadClass{article}} +\AtEndOfClass{\RequirePackage{intcalc}} +\AtEndOfClass{\RequirePackage{hyperref}} +\AtEndOfClass{\RequirePackage{ifthen}} +\AtEndOfClass{\RequirePackage{geometry}} +\AtEndOfClass{\RequirePackage{fancyhdr}} +\AtEndOfClass{\RequirePackage[compact]{titlesec}} +\DeclareOption{small}{% + \AtBeginDocument{% + \titleformat{\section}{\normalsize\bfseries}{\thesection}{1em}{}% + } + \PassOptionsToPackage{% + margin=0.25in,top=0.75in,paperwidth=5in,paperheight=3in% + }{geometry}% +} +\DeclareOption{medium}{% + \AtBeginDocument{\large} + \PassOptionsToPackage{% + margin=0.5in,top=0.75in,paperwidth=6in,paperheight=4in% + }{geometry}% +} +\DeclareOption{large}{% + \AtBeginDocument{\Large} + \PassOptionsToPackage{% + margin=0.75in,top=1in,paperwidth=8in,paperheight=5in% + }{geometry}% +} +\DeclareOption{a7paper}{% + \AtBeginDocument{% + \titleformat{\section}{\normalsize\bfseries}{\thesection}{1em}{}% + } + \PassOptionsToPackage{% + margin=5mm,top=15mm,paperwidth=105mm,paperheight=74mm% + }{geometry}% +} +\DeclareOption*{% + \PassOptionsToClass{\CurrentOption}{article}% +} +\AtBeginDocument{\renewcommand{\headrulewidth}{0pt}} +\AtBeginDocument{\pagestyle{empty}} +\newcounter{dancecount} +\newcounter{partcount} +\newcounter{phrasecount} +\newcommand*{\progressed}{\setcounter{phrasecount}{1}} +\newcommand*{\defaultcontraenv}{flushleft} +\newenvironment{contra}[4][\defaultcontraenv]{% + \clearpage + \setcounter{dancecount}{0} + \setcounter{partcount}{1} + \setcounter{phrasecount}{1} + \thispagestyle{fancy} + \rhead{#4} + \section*{#2} + {#3} + \newcommand*{\@contraenv}{#1} + \begin{\@contraenv} +}{% + \end{\@contraenv} +} +\newcommand*{\move}[2][16]{% + \ifthenelse{\intcalcMod{\value{dancecount}}{16}=0}{% + \Alph{phrasecount}\arabic{partcount}.\ % + }{}% + \addtocounter{dancecount}{#1}% + #2% + \ifthenelse{\intcalcMod{\value{dancecount}}{8}=0 + \and\not\intcalcMod{\value{dancecount}}{16}=0}{;}{\nopagebreak}% + \ifthenelse{\not\intcalcMod{\value{dancecount}}{8}=0}{,}{\nopagebreak}% + \ifthenelse{\intcalcMod{\value{dancecount}}{32}=0}{% + \addtocounter{phrasecount}{1}\setcounter{partcount}{0}\pagebreak[1]% + \vspace{1em}}{}% + \ifthenelse{\intcalcMod{\value{dancecount}}{16}=0}{% + \addtocounter{partcount}{1}\newline}{}% +} +\ProcessOptions\relax +%% +%% ___________ +%% Maintainer: Sam Whited +%% Website: https://samwhited.com +%% Contact: sam@samwhited.com +%% Public key: 0xEC2C9934 +%% +%% This work consists of this file contracard.dtx +%% and the derived files contracard.cls +%% and contracard.pdf +%% +%% +%% End of file `contracard.cls'. |