Overview
| Comment: | Chaged figure label. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
30b993f4c4378c50c8ce937e5ea9db34 |
| User & Date: | gawthrop@users.sourceforge.net on 1997-05-22 11:12:34.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1997-06-03
| ||
| 15:17:09 | Changed label to MTT_SWITCH check-in: 4f3deeee40 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1997-05-22
| ||
| 11:12:34 | Chaged figure label. check-in: 30b993f4c4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 10:11:04 | Fixed dat2gdat bug (with parameters) check-in: 3bf171c3b1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/rep_txt2tex.awk
from [22ce17eba0]
to [57ed440af6].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1997/05/19 16:43:34 peterg ## Explicit include of tex files 'cos latex2html prefers this! ## # Revision 1.2 1997/05/19 16:11:10 peterg # Modified section headers. # # Revision 1.1 1996/08/18 19:58:49 peter | > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 1997/05/22 07:36:35 peterg ## \ref --> \Ref ## ## Revision 1.3 1997/05/19 16:43:34 peterg ## Explicit include of tex files 'cos latex2html prefers this! ## # Revision 1.2 1997/05/19 16:11:10 peterg # Modified section headers. # # Revision 1.1 1996/08/18 19:58:49 peter |
| ︙ | ︙ | |||
57 58 59 60 61 62 63 |
# ps files
if( match("ps",Language)>0) {
printf("This representation is given as Figure \\Ref{fig:%s}.\n", Rep_lang);
print " \\begin{figure}";
printf(" \\epsfig{file=%s_%s.%s,width=\\linewidth}\n", \
system_name, Representation, Language);
printf(" \\caption{System \\textbf{%s}, representation %s}\n", system_name, Representation);
| | | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# ps files
if( match("ps",Language)>0) {
printf("This representation is given as Figure \\Ref{fig:%s}.\n", Rep_lang);
print " \\begin{figure}";
printf(" \\epsfig{file=%s_%s.%s,width=\\linewidth}\n", \
system_name, Representation, Language);
printf(" \\caption{System \\textbf{%s}, representation %s}\n", system_name, Representation);
printf(" \\label{fig:%s_%s}\n", system_name, Representation);
print " \\end{figure}";
}
}
}
END {
}
|