summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/texments
diff options
context:
space:
mode:
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'.