summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/dottex/dottex.sty
blob: 878f5065a2ba8ad29ca10f84298c45762c1f2c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
%%
%% This is file `dottex.sty',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% dottex.dtx  (with options: `package')
%% 
%% Copyright (c) 2005, Lars Kotthoff <metalhead@metalhead.ws>
%% 
%% Large portions copied from pdftex,
%% Copyright (c) 2001-3, Radhakrishnan CV <cvr@river-valley.com>
%%                       Rajagopal CV <cvr3@river-valley.com>
%%                       http://www.river-valley.com
%% 
%% River Valley Technologies, Floor III, SJP Buildings, Cotton Hills
%% Trivandrum, India 695014
%% 
%% Tel: +91 471 233 7501
%% 
%%                     Antoine Chambert-Loir
%%                     <chambert@math.polytechnique.fr>
%%                     http://www.math.polytechnique.fr/\protect \unhbox \voidb@x \penalty \@M \ {}chambert
%% 
%% Ecole polytechnique, Palaiseau Cedex, France
%% 
%% This program is free software; you can redistribute it and/or
%% modify it under the terms of the GNU General Public License
%% as published by the Free Software Foundation; either version 2
%% of the License, or (at your option) any later version.
%% 
%% This program is distributed in the hope that it will be useful,
%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
%% GNU General Public License for more details.
%% 
%% You should have received a copy of the GNU General Public License
%% along with this program (gpl.txt); if not, write to the Free
%% Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
%% MA  02111-1307, USA.
%% 
 \NeedsTeXFormat{LaTeX2e}[1999/12/01]
 \ProvidesPackage{dottex}
    [2005/08/13 v0.2 dot/neato graphs in LaTeX]
\RequirePackage{graphicx,moreverb}
\newif\ifShellEscape
\newif\ifmiktex \miktexfalse

\DeclareOption{shell}{\ShellEscapetrue}
\DeclareOption{noshell}{\ShellEscapefalse}
\DeclareOption{miktex}{\global\miktextrue}

\ExecuteOptions{shell}
\ProcessOptions\relax
%% test if shell escape really works
\ifShellEscape
    \def\tmpfile{/tmp/w18-test-\the\year\the\month\the\day\the\time}
    \ifmiktex%
        \immediate\write18{rem >"\tmpfile"}
    \else
        \immediate\write18{touch \tmpfile}
    \fi
    \ifmiktex
        \IfFileExists{\tmpfile.}{\ShellEscapetrue}{\ShellEscapefalse}
    \else
        \IfFileExists{\tmpfile}{\ShellEscapetrue}{\ShellEscapefalse}
    \fi
\fi

\ifShellEscape
    \PackageInfo{dottex}
    {Automatically converting dot/neato files to ps}
\else
    \PackageWarningNoLine{dottex}
        {Shell escape not enabled.\MessageBreak
        You'll need to convert the graphs yourself}
\fi
\newcounter{fignum}
\gdef\dotwidth{\textwidth}
\def\figname{\jobname-fig\thefignum}

\def\dotverbatimwrite#1{%
    \def\BeforeStream
    {\message{Opening Dot stream=\figname.dot}%
        \immediate\write\verbatim@out{\string digraph\space G\space {/*}*/}
    }
    \@bsphack
    \immediate\openout \verbatim@out #1
    \BeforeStream%
    \let\do\@makeother\dospecials
    \catcode`\^^M\active
    \def\verbatim@processline{%
        \immediate\write\verbatim@out
        {\the\verbatim@line}}%
    \verbatim@start}
\def\enddotverbatimwrite{%
    \immediate\write\verbatim@out{/*{*/}}
    \immediate\closeout\verbatim@out
    \@esphack}

\def\neatoverbatimwrite#1{%
    \def\BeforeStream
    {\message{Opening Neato stream=\figname.neato}%
        \immediate\write\verbatim@out{\string graph\space G\space {/*}*/}
    }
    \@bsphack
    \immediate\openout \verbatim@out #1
    \BeforeStream%
    \let\do\@makeother\dospecials
    \catcode`\^^M\active
    \def\verbatim@processline{%
        \immediate\write\verbatim@out
        {\the\verbatim@line}}%
    \verbatim@start}
\def\endneatoverbatimwrite{%
    \immediate\write\verbatim@out{/*{*/}}
    \immediate\closeout\verbatim@out
    \@esphack}
\newenvironment{dotpic}{\stepcounter{fignum}%
    \xdef\dotCutFile{\figname.dot}
    \dotverbatimwrite{\dotCutFile}}
    {\enddotverbatimwrite%
    \dotgraphicsinclude}

\newenvironment{neatopic}{\stepcounter{fignum}%
    \xdef\neatoCutFile{\figname.neato}
    \neatoverbatimwrite{\neatoCutFile}}
    {\endneatoverbatimwrite%
    \neatographicsinclude}
\long\gdef\dotgraphicsprocess{%
    \ifShellEscape
        \IfFileExists{\figname.dot}{%
            \immediate\write18{dot -Tps -o \figname.ps \figname.dot}
            \IfFileExists{\figname.ps}{%
                \PackageInfo{dottex}
                    {\figname.dot converted}}
                {\PackageWarningNoLine{dottex}
                    {Conversion of \figname.dot failed.}}}{}
    \fi}

\long\gdef\neatographicsprocess{%
    \ifShellEscape
        \IfFileExists{\figname.neato}{%
            \immediate\write18{neato -Tps -o \figname.ps \figname.neato}
            \IfFileExists{\figname.ps}{%
                \PackageInfo{dottex}
                    {\figname.neato converted}}
                {\PackageWarningNoLine{dottex}
                    {Conversion of \figname.neato failed.}}}{}
    \fi}
\long\gdef\dotgraphicsinclude{\dotgraphicsprocess%
    \IfFileExists{\figname.ps}{%
        \includegraphics[width=\dotwidth]{\figname}
    }
    {\PackageWarningNoLine{dottex}
        {Please convert \figname.dot manually}}
}

\long\gdef\neatographicsinclude{\neatographicsprocess%
    \IfFileExists{\figname.ps}{%
        \includegraphics[width=\dotwidth]{\figname}
    }
    {\PackageWarningNoLine{dottex}
        {Please convert \figname.neato manually}}
}
\endinput
%%
%% End of file `dottex.sty'.