Changeset 013a76 in git


Ignore:
Timestamp:
Sep 2, 1999, 4:24:48 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
e53306f81bfae16e5d8715a3d1e3eff205b2cbb8
Parents:
56cfdbacf75e1219e969be022e6a51f3c1c4abb0
Message:
* hannes: new structure of the library chapter
  (doc2tex.pl general.doc pl2doc.pl reference.doc)


git-svn-id: file:///usr/local/Singular/svn/trunk@3580 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
doc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • doc/doc2tex.pl

    r56cfdb r013a76  
    11#!/usr/local/bin/perl
    2 # $Id: doc2tex.pl,v 1.16 1999-07-28 11:36:31 obachman Exp $
     2# $Id: doc2tex.pl,v 1.17 1999-09-02 14:24:45 Singular Exp $
    33###################################################################
    44#  Computer Algebra System SINGULAR
     
    4343#   --> if [:proc] is given, then includes only of respective
    4444#       proc body
    45 #   --> if (\w*)section is given, replaces @subsection by @$1section
     45#   --> if (\w*)section is given, replaces @subsubsection by @$1section
    4646#       and pastes in content of tex file directly
    4747#
     
    426426#   --> if [:proc] is given, then includes only of respective
    427427#       proc body
    428 #   --> if (\w*)section is given, replaces @subsection by @$1section
     428#   --> if (\w*)section is given, replaces @subsubsection by @$1section
    429429#       and pastes in content of tex file directly
    430430
     
    489489
    490490    print TEX "\@c start include of docu for $lib.lib:$proc\n";
    491     print TEX "\@c replaced \@subsection by \@$section\n" if ($section);
     491    print TEX "\@c replaced \@subsubsection by \@$section\n" if ($section);
    492492    if ($proc)
    493493    {
     
    498498        if ($found)
    499499        {
    500           s/subsection/${section}section/ if $section;
     500          s/subsubsection/${section}section/ if $section;
    501501          print TEX $_;
    502502        }
     
    518518      while (<LTEX>)
    519519      {
    520         s/subsection/${section}section/;
     520        s/subsubsection/${section}section/;
    521521        print TEX $_;
    522522      }
  • doc/pl2doc.pl

    r56cfdb r013a76  
    11#!/usr/local/bin/perl
    2 # $Id: pl2doc.pl,v 1.10 1999-09-02 13:06:08 Singular Exp $
     2# $Id: pl2doc.pl,v 1.11 1999-09-02 14:24:48 Singular Exp $
    33###################################################################
    44#  Computer Algebra System SINGULAR
     
    6565# print  summary
    6666#
    67 # print subsections for help of procs
     67# print subsubsections for help of procs
    6868unless ($no_fun)
    6969{
Note: See TracChangeset for help on using the changeset viewer.