Changeset 119b42 in git


Ignore:
Timestamp:
Dec 3, 1999, 12:20:50 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d18e6a190499b07ca86fedcc55f581f31c85e12e
Parents:
2272c3391e93ecd07a683f31dbcf7bd03cc1df70
Message:
* emacs stuff, NEWS, etc.


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

Legend:

Unmodified
Added
Removed
  • doc/Makefile.in

    r2272c33 r119b42  
    22###
    33### Makefile for Singular documentation
    4 ### $Id: Makefile.in,v 1.45 1999-12-02 13:52:49 obachman Exp $
     4### $Id: Makefile.in,v 1.46 1999-12-03 11:20:43 obachman Exp $
    55#####################################################################
    66SHELL=/bin/sh
     
    7474# File sets
    7575#
    76 STANDALONE_TEXI_FILES   = COPYING.texi INSTALL_unix.texi
     76STANDALONE_TEXI_FILES   = COPYING.texi INSTALL_unix.texi NEWS.texi
    7777
    7878DOC2TEX_FILES   = \
     
    241241        - rmdir ${infodir}
    242242
    243 install-sharedist: singular.hlp html/index.htm singular.idx
     243install-sharedist: singular.hlp html/index.htm singular.idx \
     244                   COPYING.txt COPYING.html NEWS.txt NEWS.html
     245        ${MKINSTALLDIRS} ${install_prefix}
    244246        ${MKINSTALLDIRS} ${install_infodir}
    245247        ${INSTALL_DATA} singular.hlp ${install_infodir}
     
    249251        ${MKINSTALLDIRS} ${install_docdir}
    250252        ${INSTALL_DATA} singular.idx ${install_docdir}
     253        ${INSTALL_DATA} COPYING.txt ${install_prefix}/COPYING
     254        ${INSTALL_DATA} COPYING.html ${install_prefix}
     255        ${INSTALL_DATA} NEWS.txt ${install_prefix}/NEWS
     256        ${INSTALL_DATA} NEWS.html ${install_prefix}
    251257
    252258install-bindist: INSTALL_unix.${SINGUNAME}.txt INSTALL_unix.${SINGUNAME}.html
  • doc/NEWS.texi

    r2272c33 r119b42  
    11@comment -*-texinfo-*-
    2 @comment $Id: NEWS.texi,v 1.2 1999-12-02 14:14:40 obachman Exp $
     2@comment $Id: NEWS.texi,v 1.3 1999-12-03 11:20:44 obachman Exp $
    33@comment this file contains the News about Singular versions
    44@comment Unix
     
    77@end ifclear
    88
    9 @ifclear singularmanual
    109@majorheading NEWS in SINGULAR @value{VERSION}
    1110
     11@ifclear singularmanual
    1212@macro nref{what}
    1313\what\
     
    2626still have to be implemented and/or documented.
    2727
    28 It is to be expected that the current version @value{VERSION} is not as
    29 stable as the 1.2 version(s), since major changes were done to the
    30 @sc{Singular} kernel (although, there are no known bugs in the current
    31 version). Therefore, it is important to us, that users try out this
    32 new version.
     28Although there are no known bugs, it is to be
     29expected that the current version @value{VERSION} is not as stable as
     30the 1.2 version(s), since major changes were done to the @sc{Singular}
     31kernel. Therefore, it is important to us, that users try out this new
     32version.
    3333
    3434Furthermore, the current version is generally not yet as fast as version
    35 1.2. But this is going to change dramatically in the upcoming version(s).
     351.2. But this is going to change dramatically in the upcoming release
     36version(s).
    3637
    3738Thank you very much for your support!
     
    4445@item @nref{The online help system}
    4546choose in which browser the on-line help is displayed;
    46 @*wildcard expansion on help topics
    47 @*new layout of html manual
     47@*wildcard expansion of help topics
     48@*new layout of html manual pages
    4849@item @nref{Source code debugger}
    4950interactive debugging of procedures written in the @sc{Singular}
    5051language
    5152@item file/directory layout of distribution
    52 @item
    53 
     53@code{Singular/<version>/}
     54@item http://singular.uni-kl.de ftp://singular.uni-kl.de
     55TBC: New WWW and FTP home-site of @sc{Singular}
    5456@end table
    5557
     
    5759
    5860@table @asis
    59 @item new coefficient domains
     61@item new coefficient domains: arbitrary long real and complex numbers
    6062The current syntax is going to change slightly in the final version 2.0.
    6163@item no restriction on number of ring variables
     
    7173@item @nref{mondromy_lib}
    7274procedures for computing the monodromy of a singularity
    73 @item @nref{spectrum_lib}
    74 TBC: doCu, examples, tests
     75@item @code{spectrum_lib}
     76TBC: docu, examples, tests
    7577@item @nref{spcurve_lib}
    7678procedures for cm codimension 2 singularities
     
    8991@item @nref{breakpoint}
    9092sets a debugger breakpoint
    91 @item @nref{int operations}
    92 @code{div} added: integer division omitting remainder
     93@item @code{div}
     94integer division omitting remainder
    9395@item @nref{ERROR}
    9496interrupts computation in current procedure and returns with error
  • doc/doc2tex.pl

    r2272c33 r119b42  
    11#!/usr/local/bin/perl
    2 # $Id: doc2tex.pl,v 1.20 1999-11-29 12:56:07 obachman Exp $
     2# $Id: doc2tex.pl,v 1.21 1999-12-03 11:20:44 obachman Exp $
    33###################################################################
    44#  Computer Algebra System SINGULAR
     
    247247    $line++;
    248248    last if (/^\@c\s*example\s*$/);
    249     s/^\s*//; # remove preceeding white spaces
     249#    s/^\s*//; # remove preceeding white spaces
    250250    if ($no_ex || $no_comp)
    251251    {
Note: See TracChangeset for help on using the changeset viewer.