-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
py-and-sty.dtx
1579 lines (1576 loc) · 64.4 KB
/
py-and-sty.dtx
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% \section{Implementation}
% \label{sec:implementation}
%
% There are two pieces to this package: a \LTX style file, and a
% Python module. They are mutually interdependent, so it makes sense to
% document them both here.
%
% \subsection{The style file}
% \label{sec:sty-file}
%
% \iffalse
% tell docstrip to put code into the .sty file
%<*latex>
% \fi
%
% All macros and counters intended for use internal to this package
% begin with ``|ST@|''.
%
% \subsubsection{Initialization}
%
% Let's begin by loading some packages. The key bits of |sageblock| and
% friends are stol---um, adapted from the |verbatim| package manual. So
% grab the |verbatim| package. We also need the |fancyvrb| package for
% the |sageexample| environment
% \begin{macrocode}
\RequirePackage{verbatim}
\RequirePackage{fancyvrb}
% \end{macrocode}
% and |listings| for the |sagecommandline| environment.
% \begin{macrocode}
\RequirePackage{listings}
\RequirePackage{xcolor}
\lstdefinelanguage{Sage}[]{Python}
{morekeywords={False,sage,True},sensitive=true}
\lstdefinelanguage{SageOutput}[]{}
{morekeywords={False,True},sensitive=true}
\lstdefinestyle{DefaultSageInputOutput}{
nolol,
identifierstyle=,
name=sagecommandline,
xleftmargin=5pt,
numbersep=5pt,
aboveskip=0pt,
belowskip=0pt,
breaklines=true,
numberstyle=\footnotesize,
numbers=right
}
\lstdefinestyle{DefaultSageInput}{
language=Sage,
style=DefaultSageInputOutput,
basicstyle={\ttfamily\bfseries},
commentstyle={\ttfamily\color{dgreencolor}},
keywordstyle={\ttfamily\color{dbluecolor}\bfseries},
stringstyle={\ttfamily\color{dgraycolor}\bfseries},
}
\lstdefinestyle{DefaultSageOutput}{
language=SageOutput,
style=DefaultSageInputOutput,
basicstyle={\ttfamily},
commentstyle={\ttfamily\color{dgreencolor}},
keywordstyle={\ttfamily\color{dbluecolor}},
stringstyle={\ttfamily\color{dgraycolor}},
}
\lstdefinestyle{SageInput}{
style=DefaultSageInput,
}
\lstdefinestyle{SageOutput}{
style=DefaultSageOutput,
}
\providecolor{dbluecolor}{rgb}{0.01,0.02,0.7}
\providecolor{dgreencolor}{rgb}{0.2,0.4,0.0}
\providecolor{dgraycolor}{rgb}{0.30,0.3,0.30}
% \end{macrocode}
% Unsurprisingly, the |\sageplot| command works poorly without graphics
% support.
% \begin{macrocode}
\RequirePackage{graphicx}
% \end{macrocode}
% The |makecmds| package gives us a |\provideenvironment| which we need,
% and we use |ifpdf| and |ifthen| in |\sageplot| so we know what kind of
% files to look for. Since |ifpdf| doesn't detect running under XeTeX
% (which defaults to producing PDFs), we need |ifxetex|. Hopefully the
% |ifpdf| package will get support for this and we can drop |ifxetex|.
% We also work around ancient \TeX{} distributions that don't have
% |ifxetex| and assume that they don't have XeTeX.
% \begin{macrocode}
\RequirePackage{makecmds}
\RequirePackage{ifpdf}
\RequirePackage{ifthen}
\IfFileExists{ifxetex.sty}{
\RequirePackage{ifxetex}
}{
\newboolean{xetex}
\setboolean{xetex}{false}}
% \end{macrocode}
%
% Next set up the counters, default indent, and flags.
% \begin{macrocode}
\newcounter{ST@inline}
\newcounter{ST@plot}
\newcounter{ST@cmdline}
\setcounter{ST@inline}{0}
\setcounter{ST@plot}{0}
\setcounter{ST@cmdline}{0}
\newlength{\sagetexindent}
\setlength{\sagetexindent}{5ex}
\newif\ifST@paused
\ST@pausedfalse
% \end{macrocode}
% Set up the file stuff, which will get run at the beginning of the
% document, after we know what's happening with the |final| option.
% First, we open the |.sage| file:
% \begin{macrocode}
\AtBeginDocument{\@ifundefined{ST@final}{%
\newwrite\ST@sf%
\immediate\openout\ST@sf=\jobname.sagetex.sage%
% \end{macrocode}
% \begin{macro}{\ST@wsf}
% We will write a lot of stuff to that file, so make a convenient
% abbreviation, then use it to put the initial commands into the
% |.sage| file. The hash mark below gets doubled when written to the
% file, for some obscure reason related to parameter expansion. It's
% valid Python, though, so I haven't bothered figuring out how to get
% a single hash. We are assuming that the extension is |.tex|; see the
% |initplot| documentation on page~\pageref{initplot} for discussion
% of file extensions. (There is now the \texttt{currfile} package
% (\url{http://www.ctan.org/pkg/currfile/}) which can figure out file
% extensions, apparently.) The ``|(\jobname.sagetex.sage)|'' business
% is there because the comment below will get pulled into the
% autogenerated |.py| file (second order autogeneration!) and I'd like
% to reduce possible confusion if someone is looking around in those
% files. Finally, we check for version mismatch and bail if the .py
% and .sty versions don't match and the user hasn't disabled checking.
% Note that we use |^^J| and not |^^J%| when we need indented lines.
% Also, |sagetex.py| now includes a |version| variable which
% eliminates all the irritating string munging below, and later we can
% remove this stuff and just use |sagetex.version|.
% \changes{v2.2.4}{2010/02/15}{Add version mismatch checking.}
% \changes{v2.3.3}{2012/01/13}{Improve version mismatch checking,
% include Mercurial revision in version string.}
% \begin{macrocode}
\newcommand{\ST@wsf}[1]{\immediate\write\ST@sf{#1}}%
\ST@wsf{%
# -*- encoding: utf-8 -*-^^J%
# This file (\jobname.sagetex.sage) was *autogenerated* from \jobname.tex with
sagetex.sty version \ST@ver.^^J%
import sagetex^^J%
_st_ = sagetex.SageTeXProcessor('\jobname', version='\ST@ver', version_check=\ST@versioncheck)}}%
% \end{macrocode}
% On the other hand, if the |ST@final| flag is set, don't bother with
% any of the file stuff, and make |\ST@wsf| a no-op.
% \begin{macrocode}
{\newcommand{\ST@wsf}[1]{\relax}}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\ST@dodfsetup}
% The |sageexample| environment writes stuff out to a different file
% formatted so that one can run doctests on it. We define a macro that
% only sets this up if necessary.
% \begin{macrocode}
\newcommand{\ST@dodfsetup}{%
\@ifundefined{ST@diddfsetup}{%
\newwrite\ST@df%
\immediate\openout\ST@df=\jobname_doctest.sage%
\immediate\write\ST@df{r"""^^J%
This file was *autogenerated* from \jobname.tex with sagetex.sty^^J%
version \ST@ver. It contains the contents of all the^^J%
sageexample environments from \jobname.tex. You should be able to^^J%
doctest this file with "sage -t \jobname_doctest.sage".^^J%
^^J%
It is always safe to delete this file; it is not used in typesetting your^^J%
document.^^J}%
\AtEndDocument{\immediate\write\ST@df{"""}}%
\gdef\ST@diddfsetup{x}}%
{\relax}}
% \end{macrocode}
% \changes{v2.2.5}{2010/03/25}{Write sageexample environment contents to
% a separate file, formatted for doctesting}
% \end{macro}
%
% \begin{macro}{\ST@wdf}
% This is the compansion to |\ST@wsf|; it writes to the doctest file,
% assuming that is has been set up. We ignore the |final| option here
% since nothing in this file is relevant to typesetting the document.
% \begin{macrocode}
\newcommand{\ST@wdf}[1]{\immediate\write\ST@df{#1}}
% \end{macrocode}
% \end{macro}
%
% Now we declare our options, which mostly just set flags that we check
% at the beginning of the document, and when running the |.sage| file.
% \changes{v2.0}{2008/04/04}{Add \texttt{epstopdf} option}
% \changes{v2.0}{2008/12/16}{Add \texttt{final} option}
%
% The |final| option controls whether or not we write the |.sage| file;
% the |imagemagick| and |epstopdf| options both want to write something
% to that same file. So we put off all the actual file stuff until the
% beginning of the document---by that time, we'll have processed the
% |final| option (or not) and can check the |\ST@final| flag to see what
% to do. (We must do this because we can't specify code that runs if an
% option \emph{isn't} defined.)
%
% For |final|, we set a flag for other guys to check, and if there's no
% |.sout| file, we warn the user that something fishy is going on.
% \begin{macrocode}
\DeclareOption{final}{%
\newcommand{\ST@final}{x}%
\IfFileExists{\jobname.sagetex.sout}{}{\AtEndDocument{\PackageWarningNoLine{sagetex}%
{`final' option provided, but \jobname.sagetex.sout^^Jdoesn't exist! No Sage
input will appear in your document. Remove the `final'^^Joption and
rerun LaTeX on your document}}}}
% \end{macrocode}
% For |imagemagick|, we set two flags: one for \LTX and one for Sage.
% It's important that we set |ST@useimagmagick| \emph{before} the
% beginning of the document, so that the graphics commands can check
% that. We do wait until the beginning of the document to do file
% writing stuff.
% \begin{macrocode}
\DeclareOption{imagemagick}{%
\newcommand{\ST@useimagemagick}{x}%
\AtBeginDocument{%
\@ifundefined{ST@final}{%
\ST@wsf{_st_.useimagemagick = True}}{}}}
% \end{macrocode}
% For |epstopdf|, we just set a flag for Sage.
% \begin{macrocode}
\DeclareOption{epstopdf}{%
\AtBeginDocument{%
\@ifundefined{ST@final}{%
\ST@wsf{_st_.useepstopdf = True}}{}}}
% \end{macrocode}
% By default, we check to see if the .py and .sty file versions match.
% But we let the user disable this.
% \begin{macrocode}
\newcommand{\ST@versioncheck}{True}
\DeclareOption{noversioncheck}{%
\renewcommand{\ST@versioncheck}{False}}
\ProcessOptions\relax
% \end{macrocode}
% The |\relax| is a little incantation suggested by the ``\LaTeXe{} for
% class and package writers'' manual, section 4.7.
%
% Pull in the |.sout| file if it exists, or do nothing if it doesn't. I
% suppose we could do this inside an |AtBeginDocument| but I don't see
% any particular reason to do that. It will work whenever we load it. If
% the |.sout| file isn't found, print the usual \TeX-style message. This
% allows programs
% (\href{http://www.phys.psu.edu/~collins/software/latexmk-jcc/}{\texttt{Latexmk}}, for example)
% that read the |.log| file or terminal output to detect
% the need for another typesetting run to do so. If the ``\texttt{No
% file foo.sout}'' line doesn't work for some software package, please
% let me know and I can change it to use |PackageInfo| or whatever.
% \begin{macrocode}
\InputIfFileExists{\jobname.sagetex.sout}{}
{\typeout{No file \jobname.sagetex.sout.}}
% \end{macrocode}
% \changes{v2.1.1}{2009/05/14}{Add typeout if .sout file not found}
%
% The user might load the |hyperref| package after this one (indeed, the
% |hyperref| documentation insists that it be loaded last) or not at
% all---so when we hit the beginning of the document, provide a dummy
% |NoHyper| environment if one hasn't been defined by the |hyperref|
% package. We need this for the |\sage| macro below.
% \begin{macrocode}
\AtBeginDocument{\provideenvironment{NoHyper}{}{}}
% \end{macrocode}
%
% \subsubsection{The \texttt{\protect\bslash sage} and
% \texttt{\protect\bslash sagestr} macros}
% \label{sec:sagemacro}
%
% \begin{macro}{\ST@sage}
% \changes{v2.1.1}{2009/05/14}{Add ST@sage, sagestr, and refactor.}
% This macro combines |\ref|, |\label|, and Sage all at once. First, we
% use Sage to get a \LTX representation of whatever you give this
% function. The Sage script writes a |\newlabel| line into the |.sout|
% file, and we read the output using the |\ref| command. Usually, |\ref|
% pulls in a section or theorem number, but it will pull in arbitrary
% text just as well.
%
% The first thing it does it write its argument into the |.sage| file,
% along with a counter so we can produce a unique label. We wrap a
% try/except around the function call so that we can provide a more
% helpful error message in case something goes wrong. (In particular, we
% can tell the user which line of the |.tex| file contains the offending
% code.) Note the difference between |^^J| and |^^J%|: the newline
% immediately after the former puts a space into the output, and the
% percent sign in the latter supresses this.
% \begin{macrocode}
\newcommand{\ST@sage}[1]{\ST@wsf{%
try:^^J
_st_.current_tex_line = \the\inputlineno^^J
_st_.inline(\theST@inline, #1)^^J%
except:^^J
_st_.goboom(\the\inputlineno)}%
% \end{macrocode}
% The |inline| function of the Python module is documented on page
% \pageref{inlinefn}. Back in \LTX-land: if paused, say so.
% \begin{macrocode}
\ifST@paused
\mbox{(Sage\TeX{} is paused)}%
% \end{macrocode}
% Otherwise\ldots our use of |\newlabel| and |\ref| seems awfully clever
% until you load the |hyperref| package, which gleefully tries to
% hyperlink the hell out of everything. This is great until it hits one
% of our special |\newlabel|s and gets deeply confused. Fortunately the
% |hyperref| folks are willing to accomodate people like us, and give us
% a |NoHyper| environment.
% \begin{macrocode}
\else
\begin{NoHyper}\ref{@sageinline\theST@inline}\end{NoHyper}%
% \end{macrocode}
% Now check if the label has already been defined. (The internal
% implementation of labels in \LTX involves defining a macro called
% ``|r@@labelname|''.) If it hasn't, we set a flag so that we can tell
% the user to run Sage on the |.sage| file at the end of the run.
% \begin{macrocode}
\@ifundefined{r@@sageinline\theST@inline}{\gdef\ST@rerun{x}}{}%
\fi
% \end{macrocode}
% In any case, the last thing to do is step the counter.
% \begin{macrocode}
\stepcounter{ST@inline}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\sage}
% This is the user-visible macro; it runs Sage's |latex()| on its
% argument.
% \begin{macrocode}
\newcommand{\sage}[1]{\ST@sage{latex(#1)}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\sagestr}
% Like above, but doesn't run |latex()| on its argument.
% \begin{macrocode}
\newcommand{\sagestr}[1]{\ST@sage{#1}}
% \end{macrocode}
%
% \end{macro}
%
% \begin{macro}{\percent}
% A macro that inserts a percent sign. This is more-or-less stolen from the
% \textsf{Docstrip} manual; there they change the catcode inside a group
% and use |gdef|, but here we try to be more \LaTeX y and use
% |\newcommand|.
% \begin{macrocode}
\catcode`\%=12
\newcommand{\percent}{%}
\catcode`\%=14
% \end{macrocode}
% \end{macro}
%
% \subsubsection{The \texttt{\protect\bslash sageplot} macro and friends}
% \label{sec:sageplotmacro}
%
% Plotting is rather more complicated, and requires several helper
% macros that accompany |\sageplot|.
%
% \begin{macro}{\ST@plotdir}
% A little abbreviation for the plot directory. We don't use
% |\graphicspath| because it's
% \href{http://www.tex.ac.uk/cgi-bin/texfaq2html?label=graphicspath}{
% apparently slow}---also, since we know right where our plots are
% going, no need to have \LTX looking for them.
% \begin{macrocode}
\newcommand{\ST@plotdir}{sage-plots-for-\jobname.tex}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\ST@missingfilebox}
% The code that makes the ``file not found'' box. This shows up in a
% couple places below, so let's just define it once.
% \begin{macrocode}
\newcommand{\ST@missingfilebox}{\framebox[2cm]{\rule[-1cm]{0cm}{2cm}\textbf{??}}}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\sageplot}
% \changes{v1.3}{2008/03/08}{Iron out warnings, cool \TikZ flowchart}
% This function is similar to |\sage|. The neat thing that we take
% advantage of is that commas aren't special for arguments to \LTX
% commands, so it's easy to capture a bunch of keyword arguments that
% get passed right into a Python function.
%
% This macro has two optional arguments, which can't be defined using
% \LTX's |\newcommand|; we use Scott Pakin's brilliant
% \href{http://tug.ctan.org/tex-archive/support/newcommand/}{|newcommand|}
% package to create this macro; the options I fed to his script were
% similar to this:
%\begin{center}
% |MACRO sageplot OPT[#1={width}] OPT[#2={notprovided}] #3|
%\end{center}
% Observe that we are using a Python script to write \LTX code which
% writes Python code which writes \LTX code. Crazy!
%
% Here's the wrapper command which does whatever magic we need to get
% two optional arguments.
% \begin{macrocode}
\newcommand{\sageplot}[1][]{%
\@ifnextchar[{\ST@sageplot[#1]}{\ST@sageplot[#1][notprovided]}}
% \end{macrocode}
% \changes{v2.3.2}{2011/06/17}{Remove ``.75 textwidth'' default option}
% The first optional argument |#1| will get shoved right into the
% optional argument for |\includegraphics|, so the user has easy control
% over the \LTX aspects of the plotting. (Perhaps a future version
% of \ST will allow the user to specify in the package options a set of
% default options to be used throughout.) The second optional argument
% |#2| is the file format and allows us to tell what files to look for.
% It defaults to ``notprovided'', which tells the Python module to
% create EPS and PDF files. Everything in |#3| gets put into the Python
% function call, so the user can put in keyword arguments there which
% get interpreted correctly by Python.
%
% \begin{macro}{\ST@sageplot}
% \changes{v2.0}{2008/12/16}{Change to use only keyword arguments: see issue
% 2 on bitbucket tracker}
% Let's see the real code here. We write a couple lines to the |.sage|
% file, including a counter, input line number, and all of the mandatory
% argument; all this is wrapped in another try/except.
% \begin{macrocode}
\def\ST@sageplot[#1][#2]#3{\ST@wsf{try:^^J
_st_.current_tex_line = \the\inputlineno^^J
_st_.plot(\theST@plot, format='#2', _p_=#3)^^Jexcept:^^J
_st_.goboom(\the\inputlineno)}%
% \end{macrocode}
% The Python |plot| function is documented on page~\pageref{plotfn}.
%
% Now we include the appropriate graphics file. Because the user might
% be producing DVI or PDF files, and have supplied a file format or not,
% and so on, the logic we follow is a bit complicated.
% \autoref{f:sageplottree} shows what we do; for completeness---and
% because I think drawing trees with \TikZ is really cool---we show what
% |\ST@inclgrfx| does in \autoref{f:stig}. This entire complicated
% business is intended to avoid doing an |\includegraphics| command on a
% file that doesn't exist, and to issue warnings appropriate to the
% situation.
%
% \begin{figure}
% \centering
% \begin{tikzpicture}
% \tikzstyle{level 1}=[sibling distance=6cm]
% \tikzstyle{level 2}=[sibling distance=3cm]
% \node [box] {DVI or PDF?}
% child {node [box] {Format provided?}
% child {node [box] {STig EPS}
% edge from parent node[left] {no}}
% child {node [box] {IM option set?}
% child {node [box, text width=3cm] {Warn that DVI + PNG = bad}
% edge from parent node[left] {no}}
% child {node [box] {STig EPS}
% edge from parent node[right] {yes}}
% edge from parent node[right] {yes}}
% edge from parent node[left] {DVI}}
% child {node [box] {Format provided?}
% child {node [box] {STig PDF}
% edge from parent node[left] {no}}
% child {node [box] {STig \texttt{\#2}}
% edge from parent node[right] {yes}}
% edge from parent node[right] {PDF}};
% \end{tikzpicture}
% \caption{The logic tree that \texttt{\bslash sageplot} uses to
% decide whether to run \texttt{\bslash includegraphics} or to yell at
% the user. ``Format'' is the \texttt{\#2} argument to \texttt{\bslash
% sageplot}, ``STig ext''
% means a call to \texttt{\bslash ST@inclgrfx} with ``ext'' as the
% second argument, and ``IM'' is Imagemagick.}
% \label{f:sageplottree}
% \end{figure}
%
% If we are creating a PDF, we check to see if the user asked for a
% different format, and use that if necessary:
% \begin{macrocode}
\ifthenelse{\boolean{pdf} \or \boolean{xetex}}{
\ifthenelse{\equal{#2}{notprovided}}%
{\ST@inclgrfx{#1}{pdf}}%
{\ST@inclgrfx{#1}{#2}}}
% \end{macrocode}
% Otherwise, we are creating a DVI file, which only supports EPS. If the
% user provided a format anyway, don't include the file (since it won't
% work) and warn the user about this. (Unless the file doesn't exist, in
% which case we do the same thing that |\ST@inclgrfx| does.)
% \begin{macrocode}
{ \ifthenelse{\equal{#2}{notprovided}}%
{\ST@inclgrfx{#1}{eps}}%
% \end{macrocode}
% If a format is provided, we check to see if we're using the
% imagemagick option. If not, we're going to issue some sort of warning,
% depending on whether the file exists yet or not.
% \begin{macrocode}
{\@ifundefined{ST@useimagemagick}%
{\IfFileExists{\ST@plotdir/plot-\theST@plot.#2}%
{\ST@missingfilebox%
\PackageWarning{sagetex}{Graphics file
\ST@plotdir/plot-\theST@plot.#2\space on page \thepage\space
cannot be used with DVI output. Use pdflatex or create an EPS
file. Plot command is}}%
{\ST@missingfilebox%
\PackageWarning{sagetex}{Graphics file
\ST@plotdir/plot-\theST@plot.#2\space on page \thepage\space
does not exist. Plot command is}%
\gdef\ST@rerun{x}}}%
% \end{macrocode}
% Otherwise, we are using Imagemagick, so try to include an EPS file
% anyway.
% \begin{macrocode}
{\ST@inclgrfx{#1}{eps}}}}
% \end{macrocode}
% Step the counter and we're done with the usual work.
% \begin{macrocode}
\stepcounter{ST@plot}}
% \end{macrocode}
% \end{macro}
% \end{macro}
%
% \begin{macro}{\ST@inclgrfx}
% This command includes the requested graphics file (|#2| is the
% extension) with the requested options (|#1|) if the file exists. Note
% that it just needs to know the extension, since we use a counter for
% the filename. If we are paused, it just puts in a little box saying
% so.
% \begin{macrocode}
\newcommand{\ST@inclgrfx}[2]{\ifST@paused
\fbox{\rule[-1cm]{0cm}{2cm}Sage\TeX{} is paused; no graphic}
\else
\IfFileExists{\ST@plotdir/plot-\theST@plot.#2}%
{\includegraphics[#1]{\ST@plotdir/plot-\theST@plot.#2}}%
% \end{macrocode}
% If the file doesn't exist, we try one more thing before giving up: the
% Python module will automatically fall back to saving as a PNG file if
% saving as an EPS or PDF file fails. So if making a PDF, we look for a
% PNG file.
%
% If the file isn't there, we insert a little box to indicate it wasn't
% found, issue a warning that we didn't find a graphics file, then set a
% flag that, at the end of the run, tells the user to run Sage again.
% \begin{macrocode}
{\IfFileExists{\ST@plotdir/plot-\[email protected]}%
{\ifpdf
\ST@inclgrfx{#1}{png}
\else
\PackageWarning{sagetex}{Graphics file
\ST@plotdir/plot-\[email protected] on page \thepage\space not
supported; try using pdflatex. Plot command is}%
\fi}%
{\ST@missingfilebox%
\PackageWarning{sagetex}{Graphics file
\ST@plotdir/plot-\theST@plot.#2\space on page \thepage\space does not
exist. Plot command is}%
\gdef\ST@rerun{x}}}
\fi}
% \end{macrocode}
% \autoref{f:stig} makes this a bit clearer.
% \begin{figure}
% \centering
% \begin{tikzpicture}
% \tikzstyle{level 1}=[sibling distance=4cm]
% \node [box] {Paused?}
% child {node [box] {Insert ``we're paused'' box}
% edge from parent node[left] {yes}}
% child {node [box] {Does EXT file exist?}
% child {node [box] {Does a PNG file exist?}
% child {node [box] {Making a PDF?}
% child {node [box] {\texttt{includegraphics} PNG}
% edge from parent node[left] {yes}}
% child {node [box, text width=2cm] {Warning: DVI, PNG incompatible}
% edge from parent node[left] {no}}
% edge from parent node[left] {yes}}
% child {node [box, text width = 2.125cm] {Warn user to rerun Sage}
% edge from parent node[left] {no}}
% edge from parent node[left] {no}}
% child {node [box] {Use \texttt{includegraphics}}
% edge from parent node[right] {yes}}
% edge from parent node[right] {no}};
% \end{tikzpicture}
% \caption{The logic used by the \texttt{\bslash ST@inclgrfx}
% command.}
% \label{f:stig}
% \end{figure}
% \end{macro}
%
% \subsubsection{Verbatim-like environments}
% \label{sec:verbatim-envs}
%
% \begin{macro}{\ST@beginsfbl}
% This is ``begin |.sage| file block'', an internal-use abbreviation
% that sets things up when we start writing a chunk of Sage code to
% the |.sage| file. It begins with some \TeX{} magic that fixes
% spacing, then puts the start of a try/except block in the |.sage|
% file---this not only allows the user to indent code without
% Sage/Python complaining about indentation, but lets us tell the user
% where things went wrong. The |blockbegin| and |blockend| functions
% are documented on page~\pageref{blocksbeginend}. The last bit is some
% magic from the |verbatim| package manual that makes \LTX respect
% line breaks.
% \begin{macrocode}
\newcommand{\ST@beginsfbl}{%
\@bsphack\ST@wsf{%
_st_.current_tex_line = \the\inputlineno^^J%
_st_.blockbegin()^^Jtry:}%
\let\do\@makeother\dospecials\catcode`\^^M\active}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\ST@endsfbl}
% The companion to |\ST@beginsfbl|.
% \begin{macrocode}
\newcommand{\ST@endsfbl}{%
\ST@wsf{except:^^J
_st_.goboom(\the\inputlineno)^^J_st_.blockend()}}
% \end{macrocode}
% \end{macro}
%
% Now let's define the ``verbatim-like'' environments. There are four
% possibilities, corresponding to the two independent choices of
% typesetting the code or not, and writing to the |.sage| file or not.
%
% \begin{environment}{sageblock}
% This environment does both: it typesets your code and puts it into the
% |.sage| file for execution by Sage.
% \begin{macrocode}
\newenvironment{sageblock}{\ST@beginsfbl%
% \end{macrocode}
% The space between |\ST@wsf{| and |\the| is crucial! It, along with the
% ``|try:|'', is what allows the user to indent code if they like. This
% line sends stuff to the |.sage| file.
% \begin{macrocode}
\def\verbatim@processline{\ST@wsf{ \the\verbatim@line}%
% \end{macrocode}
% Next, we typeset your code and start the verbatim environment.
% \begin{macrocode}
\hspace{\sagetexindent}\the\verbatim@line\par}%
\verbatim}%
% \end{macrocode}
% At the end of the environment, we put a chunk into the |.sage| file
% and stop the verbatim environment.
% \begin{macrocode}
{\ST@endsfbl\endverbatim}
% \end{macrocode}
% \end{environment}
%
% \begin{environment}{sagesilent}
% This is from the |verbatim| package manual. It's just like the above,
% except we don't typeset anything.
% \begin{macrocode}
\newenvironment{sagesilent}{\ST@beginsfbl%
\def\verbatim@processline{\ST@wsf{ \the\verbatim@line}}%
\verbatim@start}%
{\ST@endsfbl\@esphack}
% \end{macrocode}
% \end{environment}
%
% \begin{environment}{sageverbatim}
% The opposite of |sagesilent|. This is exactly the same as the verbatim
% environment, except that we include some indentation to be consistent
% with other typeset Sage code.
% \begin{macrocode}
\newenvironment{sageverbatim}{%
\def\verbatim@processline{\hspace{\sagetexindent}\the\verbatim@line\par}%
\verbatim}%
{\endverbatim}
% \end{macrocode}
% \end{environment}
%
% Logically, we now need an environment which neither typesets
% \emph{nor} writes code to the |.sage| file. The verbatim package's
% |comment| environment does that.\\
%
% \begin{environment}{sageexample}
% Finally, we have an environment which is mostly-but-not-entirely
% verbatim; this is the example environment, which takes input like
% Sage doctests, and prints out the commands verbatim but nicely
% typesets the output of those commands. This and the corresponding
% Python function are originally due to Nicolas M. Thi\'ery.
% \begin{macrocode}
\newcommand{\sageexampleincludetextoutput}{False}
\newenvironment{sageexample}{%
\ST@wsf{%
try:^^J
_st_.current_tex_line = \the\inputlineno^^J
_st_.doctest(\theST@inline, r"""}%
\ST@dodfsetup%
\ST@wdf{Sage example, line \the\inputlineno::^^J}%
\begingroup%
\@bsphack%
\let\do\@makeother\dospecials%
\catcode`\^^M\active%
\def\verbatim@processline{%
\ST@wsf{\the\verbatim@line}%
\ST@wdf{\the\verbatim@line}%
}%
\verbatim@start%
}
{
\@esphack%
\endgroup%
\ST@wsf{%
""", globals(), locals(), \sageexampleincludetextoutput)^^Jexcept:^^J
_st_.goboom(\the\inputlineno)}%
\ifST@paused%
\mbox{(Sage\TeX{} is paused)}%
\else%
\begin{NoHyper}\ref{@sageinline\theST@inline}\end{NoHyper}%
\@ifundefined{r@@sageinline\theST@inline}{\gdef\ST@rerun{x}}{}%
\fi%
\ST@wdf{}%
\stepcounter{ST@inline}}
% \end{macrocode}
% \changes{v2.2.4}{2010/03/14}{Add first support for
% \texttt{sageexample} environment}
% \end{environment}
%
%
% \begin{environment}{sagecommandline}
% This environment is similar to the |sageexample| environment, but
% typesets the Sage output as text with Python syntax highlighting.
% \begin{macrocode}
\newcommand{\sagecommandlinetextoutput}{True}
\newlength{\sagecommandlineskip}
\setlength{\sagecommandlineskip}{8pt}
\newenvironment{sagecommandline}{%
\ST@wsf{%
try:^^J
_st_.current_tex_line = \the\inputlineno^^J
_st_.commandline(\theST@cmdline, r"""}%
\ST@dodfsetup%
\ST@wdf{Sage commandline, line \the\inputlineno::^^J}%
\begingroup%
\@bsphack%
\let\do\@makeother\dospecials%
\catcode`\^^M\active%
\def\verbatim@processline{%
\ST@wsf{\the\verbatim@line}%
\ST@wdf{\the\verbatim@line}%
}%
\verbatim@start%
}
{
\@esphack%
\endgroup%
\ST@wsf{%
""", globals(), locals(), \sagecommandlinetextoutput)^^Jexcept:^^J
_st_.goboom(\the\inputlineno)}%
\ifST@paused%
\mbox{(Sage\TeX{} is paused)}%
\else%
\begin{NoHyper}\ref{@sagecmdline\theST@cmdline}\end{NoHyper}%
\@ifundefined{r@@sagecmdline\theST@cmdline}{\gdef\ST@rerun{x}}{}%
\fi%
\ST@wdf{}%
\stepcounter{ST@cmdline}}
% \end{macrocode}
% \end{environment}
%
% \subsubsection{Pausing \ST}
% \label{sec:pausing-sagetex}
%
% How can one have Sage to stop processing \ST output for a little
% while, and then start again? At first I thought I would need some sort
% of ``goto'' statement in Python, but later realized that there's a
% dead simple solution: write triple quotes to the |.sage| file to
% comment out the code. Okay, so this isn't \emph{really} commenting out
% the code; PEP 8 says block comments should use ``|#|'' and Sage will
% read in the ``commented-out'' code as a string literal. For the
% purposes of \ST, I think this is a good decision, though, since (1)
% the pausing mechanism is orthogonal to everything else, which makes it
% easier to not screw up other code, and (2) it will always work.
%
% This illustrates what I really like about \ST: it mixes \LTX and
% Sage/Python, and often what is difficult or impossible in one system
% is trivial in the other.
%
% \begin{macro}{sagetexpause}
% This macro pauses \ST by effectively commenting out code in the
% |.sage| file. When running the corresponding |.sage| file, Sage will
% skip over any commands issued while \ST is paused.
% \begin{macrocode}
\newcommand{\sagetexpause}{\ifST@paused\relax\else
\ST@wsf{print('SageTeX paused on \jobname.tex line \the\inputlineno')^^J"""}
\ST@pausedtrue
\fi}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{sagetexunpause}
% This is the obvious companion to |\sagetexpause|.
% \begin{macrocode}
\newcommand{\sagetexunpause}{\ifST@paused
\ST@wsf{"""^^Jprint('SageTeX unpaused on \jobname.tex line \the\inputlineno')}
\ST@pausedfalse
\fi}
% \end{macrocode}
% \end{macro}
%
% \subsubsection{End-of-document cleanup}
% \label{sec:end-of-doc-cleanup}
%
% We tell the Sage script to write some information to the |.sout| file,
% then check to see if |ST@rerun| ever got defined. If not, all the
% inline formulas and plots worked, so do nothing. We check to see if
% we're paused first, so that we can finish the triple-quoted string in
% the |.sage| file.
% \begin{macrocode}
\AtEndDocument{\ifST@paused
\ST@wsf{"""^^Jprint('SageTeX unpaused at end of \jobname.tex')}
\fi
\ST@wsf{_st_.endofdoc()}%
\@ifundefined{ST@rerun}{}%
% \end{macrocode}
% Otherwise, we issue a warning to tell the user to run Sage on the
% |.sage| file. Part of the reason we do this is that, by using |\ref|
% to pull in the inlines, \LTX will complain about undefined references
% if you haven't run the Sage script---and for many \LTX users, myself
% included, the warning ``there were undefined references'' is a signal
% to run \LTX again. But to fix these particular undefined references,
% you need to run \emph{Sage}. We also suppress file-not-found errors
% for graphics files, and need to tell the user what to do about that.
%
% At any rate, we tell the user to run Sage if it's necessary.
% \begin{macrocode}
{\typeout{*********************************************************************}
\PackageWarningNoLine{sagetex}{there were undefined Sage formulas and/or
plots.^^JRun Sage on \jobname.sagetex.sage, and then run LaTeX on \jobname.tex
again}}
\typeout{*********************************************************************}}
% \end{macrocode}
%
%
% \subsection{The Python module}
% \label{sec:py-file}
%
% \iffalse
% Hey, docstrip! Stop putting code into the .sty file, and start
% putting it into the .py file.
%</latex>
%<*python>
% Thanks.
% \fi
%
% The style file writes things to the |.sage| file and reads them from
% the |.sout| file. The Python module provides functions that help
% produce the |.sout| file from the |.sage| file.
%
% \paragraph{A note on Python and \textsf{Docstrip}} There is one tiny
% potential source of confusion when documenting Python code with
% \textsf{Docstrip}: the percent sign. If you have a long line of Python
% code which includes a percent sign for string formatting and you break
% the line with a backslash and begin the next line with a percent sign,
% that line \emph{will not} be written to the output file. This is only
% a problem if you \emph{begin} the line with a (single) percent sign;
% there are no troubles otherwise.\\
%
% On to the code. Munge the version string (which we get from
% \texttt{sagetex.dtx}) to extract what we want, then import what we
% need:
% \begin{macrocode}
pyversion = ' '.join(__version__.strip('[').split()[0:2])
from sage.misc.latex import latex
from sage.repl.preparse import preparse
from six import PY3
import sys
import os
import os.path
import hashlib
import traceback
import subprocess
import shutil
import re
from collections import defaultdict
% \end{macrocode}
% Define an exception class for version mismatches. I suppose I could
% just use |ValueError|, but this is easy enough:
% \begin{macrocode}
class VersionError(Exception):
pass
% \end{macrocode}
% Sometimes our macros that write things to the |.sout| file get
% evaluated twice, most commonly in the ``fancy'' AMS environments such
% as |align| and |multline|. So we need to keep track of the counters
% we've seen so we don't write labels to the |.sout| file more than
% once. We have more than one kind of label, so a dictionary is the
% natural way to store the counters we've seen for each kind of label.
% For convenience let's make a dictionary subclass for which (1) values
% default to $-1$, and (2) there's an |increment(key)| function that just
% increments the value corresponding to the key.
% \begin{macrocode}
class MyDict(defaultdict):
def __init__(self, *args, **kwargs):
defaultdict.__init__(self, *args, **kwargs)
self.default_factory = lambda: -1
def increment(self, key):
self[key] = self[key] + 1
% \end{macrocode}
% Here's a helper function used by |doctest|; it works ike |j.join(xs)|,
% but ensures exactly one copy of |j| between the strings in |xs|.
% Intended for |j| to be a single character, particularly newline so
% that you can join things with no extra blank lines.
% \begin{macrocode}
def joinone(j, xs_):
if len(xs_) >= 2:
xs = ([xs_[0].rstrip(j)] +
[x.strip(j) for x in xs_[1:-1]] +
[xs_[-1].lstrip(j)])
else:
xs = xs_
return j.join(xs)
% \end{macrocode}
% Another helper, used by |commandline| (and maybe, someday,
% |doctest|?). In each line, we look for a possibly empty sequence of
% spaces followed by a non-whitespace character, so we can distinguish
% between whitespace-only lines (which we ignore) and lines that have no
% leading spaces.
%
% One tiny possible problem: you might have a line of only, say, two
% spaces, but perhaps the ``real'' lines all start with at least three
% spaces. Then you would, for that line, do |line[2:]|. That seems like
% it might raise an error, since the line only has indices 0 and 1, but
% Python's indexing handles this perfectly: in that case, |line[2:]|
% will be the empty string, which is fine for our purposes.
% \begin{macrocode}
def strip_common_leading_spaces(s):
lines = s.splitlines()
lead = min(m.end() for m in
[re.match(' *\S', line) for line in lines]
if m is not None) - 1
return '\n'.join(line[lead:] for line in lines)
% \end{macrocode}
%
% \subsubsection{The \texttt{SageTeXProcessor} class}
% \label{sec:sagetexprocessorclass}
%
% The star of the show, as it were. We define a |SageTeXProcessor| class
% so that it's a bit easier to carry around internal state. We used to
% just have some global variables and a bunch of functions, but this
% seems a bit nicer and easier.
% \begin{macrocode}
class SageTeXProcessor():
% \end{macrocode}
% If the original |.tex| file has spaces in its name, the |\jobname|
% we get is surrounded by double quotes, so fix that. Technically, it
% is possible to have double quotes in a legitimate filename, but
% dealing with that sort of quoting is
% \href{http://tug.org/pipermail/xetex/2006-August/004712.html}{unpleasant}.
% And yes, we're ignoring the possibility of tabs and other whitespace
% in the filename. Patches for handling pathological filenames welcome.
%
% \changes{v2.3.1}{2011/02/02}{Handle filenames with
% spaces in SageTeXProcessor and sagecommandline env.}
% \changes{v2.3.2}{2012/01/13}{Improve version mismatch check. Fixes
% trac ticket 8035.}
% \begin{macrocode}
def __init__(self, jobname, version=None, version_check=True):
if version != pyversion:
errstr = """versions of .sty and .py files do not match.
{0}.sagetex.sage was generated by sagetex.sty version "{1}", but
is being processed by sagetex.py version "{2}".
Please make sure that TeX is using the sagetex.sty
from your current version of Sage; see
http://doc.sagemath.org/html/en/tutorial/sagetex.html.""".format(jobname,
version, pyversion)
if version_check:
raise VersionError(errstr)
else:
print('**** WARNING! Skipping version check for .sty and .py files, and')
print(errstr)
if ' ' in jobname:
jobname = jobname.strip('"')
self.progress('Processing Sage code for {0}.tex...'.format(jobname))
self.didinitplot = False
self.useimagemagick = False
self.useepstopdf = False
self.plotdir = 'sage-plots-for-' + jobname + '.tex'
self.filename = jobname
self.name = os.path.splitext(jobname)[0]
autogenstr = """% This file was *autogenerated* from {0}.sagetex.sage with
% sagetex.py version {1}\n""".format(self.name, version)
% \end{macrocode}
% Don't remove the space before the percent sign above!
%
% \LTX environments such as |align| evaluate their arguments twice after
% doing |\savecounters@|, so if you do |\sage| inside such an environment,
% it will result in two labels with the same name in the |.sout| file and
% the user sees a warning when typesetting. So we keep track of the
% largest label we've seen so that we don't write two labels with the same
% name.
% \begin{macrocode}
self.max_counter_seen = MyDict()
% \end{macrocode}
% Open a |.sout.tmp| file and write all our output to that. Then, when
% we're done, we move that to |.sout|. The ``autogenerated'' line is
% basically the same as the lines that get put at the top of preparsed
% Sage files; we are automatically generating a file with Sage, so it
% seems reasonable to add it. Add in the version to help debugging
% version mismatch problems.
% \begin{macrocode}
self.souttmp = open(self.filename + '.sagetex.sout.tmp', 'w')
self.souttmp.write(autogenstr)