From 91fd73a79f94329f1539cf76d0014df8d8e18838 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Wed, 24 Feb 2010 01:09:15 +0000 Subject: verbdef doc update, own package (23feb10) git-svn-id: svn://tug.org/texlive/trunk@17177 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/tex/latex/verbdef/verbdef.sty | 68 +++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 Master/texmf-dist/tex/latex/verbdef/verbdef.sty (limited to 'Master/texmf-dist/tex/latex/verbdef/verbdef.sty') diff --git a/Master/texmf-dist/tex/latex/verbdef/verbdef.sty b/Master/texmf-dist/tex/latex/verbdef/verbdef.sty new file mode 100644 index 00000000000..68421134766 --- /dev/null +++ b/Master/texmf-dist/tex/latex/verbdef/verbdef.sty @@ -0,0 +1,68 @@ +% verbdef.sty v0.2 -- Robin Fairbairns 2000/10/06 +\ProvidesPackage{verbdef}[2000/10/06 v0.2 define verbatim csnames] + +% This package provides a single command \verbdef +% +% Usage: \verbdef\test|verbatim text| +% \verbdef*\testar{with visible spaces} +% +% \test (or \testar) above will be defined as robust commands that +% expand to typeset their `verbatim text' argument in the usual +% verbatim font (using the visible space symbol in the * case) +% +% The verbatim text argument may be delimited in the same was as the +% argument of a \verb command (see definition of \test above) or using +% braces (see definition of \testar command above) +% +% Note: if the command you're defining with \verbdef is to be used in +% a \section-type command, or a \caption, it's going to appear in the +% table of contents, or list of whatevers; in this case you must +% define the command *before* the \tableofcontents command (or +% whatever). I recommend defining the commands in the preamble of +% your document. + +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.1 +% 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.1 or later is part of all distributions of LaTeX +% version 1999/06/01 or later. +% +% This program consists of the file verbdef.sty + +\newif\ifverbdef@nostar +\def\verbdef{\verbdef@nostarfalse + \@ifstar\@sverbdef\@verbdef} +\def\@verbdef{\verbdef@nostartrue\@sverbdef} + +% set up robustness of the command to be defined, set conditions for +% reading verbatim text +\def\@sverbdef#1{\edef\verbdef@tempa{\expandafter\@gobble\string#1}% + \edef#1{\noexpand\protect + \expandafter\noexpand\csname\verbdef@tempa\space\endcsname}% + \begingroup + \verb@eol@error + \let\do\@makeother \dospecials + \toks@{\verbatim@font\@noligs}% + \ifverbdef@nostar + \@vobeyspaces + \toks@\expandafter{\the\toks@\frenchspacing}% + \fi + \@verb@def} + +% +\def\@verb@def#1{% + \ifnum`#1=`\{\relax + \catcode`\}\active + \lccode`\~`\}% + \else + \catcode`#1\active + \lccode`\~`#1% + \fi + \lowercase{% + \def\@tempa##1~{% + \expandafter\xdef\csname\verbdef@tempa\space\endcsname{% + {\the\toks@##1}}}}% + \afterassignment\endgroup + \@tempa} -- cgit v1.2.3