summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/piff/newproof.sty
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-01-23 01:10:54 +0000
committerKarl Berry <karl@freefriends.org>2007-01-23 01:10:54 +0000
commit01c8ac287cb4c8ff3995bd374319a61e1ea0c884 (patch)
treef3231c07ff6ba080d0df87540c2ae28adadbbd72 /Master/texmf-dist/tex/latex/piff/newproof.sty
parente2a1e927fd17f0e87ca72af9ad87c0c0c3337a09 (diff)
remove unmaintained piff, tensor.sty conflicts
git-svn-id: svn://tug.org/texlive/trunk@3711 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/piff/newproof.sty')
-rw-r--r--Master/texmf-dist/tex/latex/piff/newproof.sty57
1 files changed, 0 insertions, 57 deletions
diff --git a/Master/texmf-dist/tex/latex/piff/newproof.sty b/Master/texmf-dist/tex/latex/piff/newproof.sty
deleted file mode 100644
index c7c0f6d2eae..00000000000
--- a/Master/texmf-dist/tex/latex/piff/newproof.sty
+++ /dev/null
@@ -1,57 +0,0 @@
-% This package defines a "\newproof" command similar to "\newtheorem".
-% Its arguments are
-% #1 Name of proof environment, eg, "proof".
-% #2 Starting text, eg, Proof.
-% #3 Finishing text, eg, [] flushed right.
-%
-% The package goes on to define a "proof" environment with exactly the
-% above setup, but other unnumbered environments can be set up in the
-% same way.
-%
-% The created environments take one optional argument, which, if present,
-% goes in brackets after #2. Eg,
-%
-% \begin{proof}
-% A proof.
-% \end{proof}
-%
-% \begin{proof}[B. L. User]
-% A named proof.
-% \end{proof}
-%
-% \begin{proof}[of Theorem \ref{thm}]
-% Yet another.
-% \end{proof}
-%
-% Command "\qed" is set up to flush "\qedtext" right; "\qedtext" defaults
-% to a square, but can be re-defined as "QED" or whatever.
-%
-% M.Piff@shef.ac.uk
-%
-\NeedsTeXFormat{LaTeX2e}[1995/12/01]
-\ProvidesPackage{newproof}
-\newcommand{\newproof}[3]{
- \newenvironment{#1}[1][]%
- {%
- \begin{trivlist}%
- \item[\hspace{\labelsep}\textnormal{\textbf{#2%
- \def\op@@@arg{##1}%
- \ifx\op@@@arg\empty
- \else~(##1)\fi
- }}]%
- }%
- {%
- #3
- \end{trivlist}%
- }%
-}
-\newproof{proof}{Proof}{\qed}
-\def\qed{{\ifhmode\unskip\nobreak\hfil\penalty50 \hskip1em \else\nobreak\fi
- \mbox{}\nobreak\hfil\qedtext%
- \parfillskip=0pt \finalhyphendemerits=0 \par}}
-
-\def\qedtext{\ensuremath{\square}}
-\RequirePackage{amsfonts}
-\DeclareMathSymbol{\square} {\mathord}{AMSa}{"03}
-
-