summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/texments
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-10-12 23:54:41 +0000
committerKarl Berry <karl@freefriends.org>2008-10-12 23:54:41 +0000
commit64761ba46fcb87ac17db5cee70e214420e72a6d0 (patch)
tree7d5a1d2d97ad5e08f0b39512c754ba5ecaf18a7b /Master/texmf-dist/tex/latex/texments
parentf2f56362ef0e91c42dca6bd1584f5b7a85a29ea9 (diff)
new latex package texments (12oct08)
git-svn-id: svn://tug.org/texlive/trunk@10949 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/texments')
-rw-r--r--Master/texmf-dist/tex/latex/texments/texments.sty44
1 files changed, 44 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/texments/texments.sty b/Master/texmf-dist/tex/latex/texments/texments.sty
new file mode 100644
index 00000000000..2b920d11e13
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/texments/texments.sty
@@ -0,0 +1,44 @@
+%%
+%% This is file `texments.sty',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% texments.dtx (with options: `package')
+%%
+%% This is a generated file.
+%%
+%% Copyright (C) 2008 by Marek Kubica <marek@xivilization.net>
+%%
+%% This file may be distributed and/or modified under the conditions of
+%% the LaTeX Project Public License, either version 1.2 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.2 or later is part of all distributions of LaTeX version
+%% 1999/12/01 or later.
+%%
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{texments}
+ [2008/10/10 0.1.0 The Pygments highligher accessible in LaTeX]
+\RequirePackage{fancyvrb}
+\RequirePackage{color}
+\newcommand{\usestyle}[1]{
+ \immediate\write18{pygmentize -S #1 -f latex > \jobname.pyg}
+ \input{\jobname.pyg}
+}
+
+\newwrite\code
+\newcommand{\pygment}[2]{
+ \immediate\openout\code\jobname.pyg
+ \immediate\write\code{#2}
+ \immediate\closeout\code
+
+ \immediate\write18{pygmentize -l #1 -f latex -o \jobname.out.pyg \jobname.pyg}
+ \input{\jobname.out.pyg}
+}
+\endinput
+%%
+%% End of file `texments.sty'.