Overview
| Comment: | Cosmetics. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
93eed9e9a95ed78761d3798e49a389f9 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-07-27 10:56:31.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-07-27
| ||
| 11:09:36 | Commented the aliases. check-in: ace0067753 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 10:56:31 | Cosmetics. check-in: 93eed9e9a9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 10:51:20 | Aliased INTF as well. check-in: 2690ae67ce user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/lbl_txt2tex
from [02a5d44088]
to [a18eaa6e1b].
| ︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 1998/07/17 19:46:44 peterg ## Included component alias. ## ## Revision 1.3 1998/07/16 20:39:52 peterg ## More cosmetic changes ## ## Revision 1.2 1998/07/16 16:34:09 peterg | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 1998/07/27 08:29:44 peterg ## Include a comment field in the aliases ## ## Revision 1.4 1998/07/17 19:46:44 peterg ## Included component alias. ## ## Revision 1.3 1998/07/16 20:39:52 peterg ## More cosmetic changes ## ## Revision 1.2 1998/07/16 16:34:09 peterg |
| ︙ | ︙ | |||
61 62 63 64 65 66 67 |
else if (match($3,"/")>0){
printf("\\item [Component %s] is in library ",$2)
}
else{
printf("\\item [Port %s] represents actual port ",$2)
}
printf("\\textbf{%s}",$3)
| | | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
else if (match($3,"/")>0){
printf("\\item [Component %s] is in library ",$2)
}
else{
printf("\\item [Port %s] represents actual port ",$2)
}
printf("\\textbf{%s}",$3)
if (match($4,"[\#\%]")==1) printf(" -- ");
for (i=5;i<=NF;i++) printf(" %s", $i)
printf("\n");
}
END{if (NR==0) print "\\item This component has no aliases"
}' | sort >> $1_lbl.tex
cat <<EOF >> $1_lbl.tex
\end{description}
|
| ︙ | ︙ |