Re: Adding new Type1 fonts: Phase I

2001-11-07 Thread Kathryn Andersen

On Wed, Nov 07, 2001 at 10:07:25AM -0600, Christopher M. Jones wrote:

> On Thursday 25 October 2001 05:35 pm, you wrote:
> > I've written myself a script to make sample sheet postscript files for
> > all the fonts on my system -- here's the line inside the loops that does

> > You can then view the resultant postscript file with gv, or print it
> > out.  It's usually three pages long, shows every character in the font.

> Could you send the complete script?

Okay, here 'tis. (Attached)

Kathryn Andersen
-=-=-=-=-=-=-=-=-
How many Borg does it take to change a light bulb?
a1. None, they just assimilate the bulb.
a2. All of them.
-- 
 _--_|\ | Kathryn Andersen  <[EMAIL PROTECTED]>
/  \|   
\_.--.*/|   
  v | #include "standard/disclaimer.h"
| Melbourne -> Victoria -> Australia -> Southern Hemisphere
Maranatha!  |   -> Earth -> Sol -> Milky Way Galaxy -> Universe


#!/bin/sh
#set -x
# create font sample files for all the ghostscript fonts
# (in the current directory)
# Written by Kathryn Andersen

work1=/tmp/gsf.$$

trap '/bin/rm -f $work1 ; exit' 0 1 2 15

# for each Fontmap file
for fmap in `locate Fontmap | grep -v FontmapCreator | grep -v RecentDocuments | grep 
-v TrueType`
do
echo $fmap
# show only the real fonts not the aliases
grep "^/" ${fmap} | sed -e 's/^\///' | grep -v "/" | awk '{ print $1; }' > 
$work1
# for each real font
for fname in `cat $work1`
do
# create font sample file
echo /${fname} DoFont | gs -sDEVICE=pswrite -sOutputFile=${fname}.ps 
`locate prfont.ps` 
done
done





Re: Display formula problem

2001-11-07 Thread Nick Burgan

Remzi,

You can toggle between the superscript/sunscript way and the directly 
above/below way when in display math mode, by typing

Alt-m-l 
(the cursors position must be before or behind the symbol)

Hope thats of some help
Nick

On Thu,  8 Nov 2001  3:14:am, you wrote:
> Lyx 1.1.6fix3 It seems to be a problem with the display formula. When I try
> to put the upper and lower limits of a sum, it does it like the inline
> formula does. Not exactly above the sum
> Any idea?
>
> Remzi

-- 

Nick Burgan
Postgraduate Student

Active Noise and Vibration Control Group
Department of Mechanical Engineering
University of Adelaide
SA 5005
AUSTRALIA

Phone: +61 (0)8 8303 6385
Fax: +61 (0)8 8303 4367




Re: newbie font problem

2001-11-07 Thread Will Robinson

Thanks for the speedy reply.  Unfortunately, I don't think that's the
problem...  I have all of the packages you listed except for tetex-doc
(which is just documentation, yes?).  I'm running redhat 6.2, so the
version numbers of all the tetex-* packages is 1.0.6-11, but this should
still work, right?

Thanks again,
Will Robinson

On Wed, 7 Nov 2001, Kayvan A. Sylvan wrote:

> The error makes me think you don't have a full TeX install.
>
> Here is what I have:
>
>   tetex-dvilj-1.0.7-15
>   tetex-xdvi-1.0.7-15
>   tetex-dvips-1.0.7-15
>   tetex-extras-1.0-7
>   tetex-chess-1.3-1
>   tetex-arabtex-3.09-1
>   tetex-afm-1.0.7-15
>   tetex-1.0.7-15
>   tetex-doc-1.0.7-15
>   tetex-fonts-1.0.7-15
>   tetex-latex-1.0.7-15
>
> I suspect you are missing the tetex-fonts.
>
>   ---Kayvan
>




Re: newbie font problem

2001-11-07 Thread Kayvan A. Sylvan

The error makes me think you don't have a full TeX install.

Here is what I have:

tetex-dvilj-1.0.7-15
tetex-xdvi-1.0.7-15
tetex-dvips-1.0.7-15
tetex-extras-1.0-7
tetex-chess-1.3-1
tetex-arabtex-3.09-1
tetex-afm-1.0.7-15
tetex-1.0.7-15
tetex-doc-1.0.7-15
tetex-fonts-1.0.7-15
tetex-latex-1.0.7-15

I suspect you are missing the tetex-fonts.

---Kayvan



newbie font problem

2001-11-07 Thread Will Robinson

Hi all,

I've gone through the Introduction and Tutorial, and have skimmed the
User's Guide, but I can't find any mention of this problem anywhere.  A
google search was also fruitless, as was a search of this list's archive.

I've just been following the tutorial, and have corrected the
example_raw.lyx file.  I wanted to output the file to postscript so that I
could look at it with gv (or print it, or whatever).  When I go to
File->Export->PostScript, LyX thinks awhile, then pops up a window that
says:

There were errors during the LaTeX run.
8 errors detected.
You should try to fix them.

I close the error window, and I see a bunch of "Error" boxes in my
document.  When I click on one of them, it gives me a message like this:


Font T1/cmr/m/n/14.4=ecrm1440 at 14.4pt not loadable: Metric (TFM) file
not f
\maketitle

I wasn't able to read the size data for this font,
so I will ignore the font specification.
[Wizards can fix TFM files using TFtoPL/PLtoTF.]
You might try inserting a different font spec;
e.g., type `|\font='.


I've just installed the LyX rpm (along with the tetex-lyx rpm) from the
bin directory of the ftp site at lyx.org.  I'm using version 1.1.6fix3 of
each.  As far as I can tell, I have all the other required rpms installed
also, specifically:
xforms 0.88
tetex 1.0.6
tetex-latex 1.0.6
ghostscript 5.50
gv 3.5.8

I know I'm missing something, and I'm eager to make LyX a part of my
everyday computing. :)

Thanks for any help you can provide,
Will Robinson
[EMAIL PROTECTED]




Part name in TOC

2001-11-07 Thread Tony Dancer

Hello,

I really am sorry for posting this, as I suspect it is an FAQ. However,
I can't find any record of it in the digests.

I have a thesis using report style, and want to make the TOC look
different.

Specifically, `Part' just reads I, II etc, and I would like it to say
Part I. 

Can anyone tell me how do I do this?

Thanks
Tony

--
 
Question: Is it better to abide by the rules until they're changed or
help speed the change by breaking them?




Re: problem again ...

2001-11-07 Thread Renaud MICHEL

Le Mercredi 7 Novembre 2001 19:17, vous avez écrit :
> well hi people ..
> well im writing my report in lyx and it has figures ..
> i have given the caption to the figure in latex ..the figures are
> being numbered 1,2,3 ... but i want the
> figures to be numbered accorcing to the section it is in ...
> e.g. figure in section 3 .. figure 3.1 , figure 3.2 ,etc ..
> please suggest a technique to do the above 

You can do this

-At the begining of each section set the counter figure to 0
\setcounter{figure}{0}

-At the begining of the document or in the preamble redefine the \thefigure 
command
\setcounter{figure}{0}

Now you should have what you want (see the attached sample file).

If you don't want to add the same command at the begining of each section you 
can do this trick
\let\oldsection=\section
\renewcommand[1]{\oldsection{#1} \setcounter{figure}{0}}
But I am not sur it will work (isn't there an optionnal argument for \section 
?).

-- 
 c'est bien starcraft
 Chuchi : Ah ouais, l'est ou le RL dans Starcraft hein ?

 - #francaise

Renaud MICHEL


#LyX 1.1 created this file. For more info see http://www.lyx.org/
\lyxformat 218
\textclass article
\language frenchb
\inputencoding auto
\fontscheme default
\graphics default
\paperfontsize default
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 0
\use_amsmath 0
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default

\layout LaTeX


\backslash 
renewcommand{
\backslash 
thefigure}{
\backslash 
thesection.
\backslash 
arabic{figure}}
\layout Section

Section
\layout Standard

\begin_float fig 
\layout Caption

fig
\end_float 
\layout Section

Section
\layout Standard


\latex latex 

\backslash 
setcounter{figure}{0}
\layout Standard

\begin_float fig 
\layout Caption

fig
\end_float 
\layout Standard

\begin_float fig 
\layout Caption

fig
\end_float 
\the_end



Re: Octave support -- a wish

2001-11-07 Thread Matej Cepl

On Wed, Nov 07, 2001 at 12:07:21PM +, Etienne Grossmann wrote:
> 
>   Hello,
> 
>   Andre, maybe you can hack the following function so it produces lyx
>   code.

When tried on my Linuxbox (RH 7.0, octave 2.0.16 from
distribution), these were the results:

 octave:1> A=[1 2 3
 > 3 5 6
 > 7 8 9];
 octave:2> mat2tex(A)
 parse error near line 30 of file /home/matej/mat2tex.m
 >>> f2 = [sprintf(" %s &",form)](kron(ones(1,C),1:length(form)+3));
 ^
 error: `mat2tex' undefined near line 2 column 1
 error: evaluating index expression near line 2, column 1
 octave:2>

What's wrong with me?

Matej

-- 
Matej Cepl, [EMAIL PROTECTED]
138 Highland Ave. #10, Somerville, Ma 02143, (617) 623-1488
 
I know of no country in which there is so little independence of
mind and real freedom of discussion as in America.
-- Alexis de Tocqueville




problem again ...

2001-11-07 Thread Ritesh Jhaveri

well hi people ..
well im writing my report in lyx and it has figures ..
i have given the caption to the figure in latex ..the figures are 
being numbered 1,2,3 ... but i want the
figures to be numbered accorcing to the section it is in ... 
e.g. figure in section 3 .. figure 3.1 , figure 3.2 ,etc ..
please suggest a technique to do the above 


 ---Ritesh (Sticky!!!)




Re: 1.1.6fix3 pictures no longer display ( eps ghostscript preview )

2001-11-07 Thread John Levon

On Wed, Nov 07, 2001 at 03:08:27PM +0100, Morten S. Nielsen wrote:

> Sorry if this is a bit outdated, but this bug still seems to exist.
> 
> In figinset.C there seems to be a problem with execlp if one uses 
> ghostscript 6.51 + 
> 
> The gs process starts but never exits. Why I don't know. One can go 
> into /proc and see the commandline arguments, but this doesn't explain
> where it hangs. If you're curious I could try to strace gs. But for now
> I'll just report the workaround.

This is what happens when you are using a menu in lyx when rendering is finished
by the ghostscript child. It is an xforms bug we can do nothing about.

> If using ghostscript 5.50 it always works fine. 
> 
> On my system lyx 1.1.6-fix3 works with Ghostscript 6.51 when setting  
> \ps_command to "/usr/bin/gs "
> in lyxrc.defaults or equivalent
> 
> It's the first argument to execlp which must end with a space (works
> also when setting the first string to " ") 

This is /thoroughly/ bizarre. There is no binary named "/usr/bin/gs " so
I am amazed it works at all. Are you sure about this ?

thanks
john

-- 
"This bulletin discusses three security vulnerabilities that are unrelated
except in the sense that both affect ISA Server 2000"
- Microsoft Product Security



Display formula problem

2001-11-07 Thread Remzi Seker

Lyx 1.1.6fix3 It seems to be a problem with the display formula. When I try
to put the upper and lower limits of a sum, it does it like the inline
formula does. Not exactly above the sum
Any idea?

Remzi





Re: problem

2001-11-07 Thread Remzi Seker

try this:

title here

\pagenumbering{roman}

\addcontentsline{toc}{section}{ABSTRACT}

\begin{center}ABSTRACT \end{center}

abstract here

\newpage

\renewcommand{\contentsname}{CONTENTS}

Table of Contents

\newpage

\addcontentsline{toc}{section}{LIST OF FIGURES}

\renewcommand{\listfigurename}{LIST OF FIGURES}

List of Figures

\enlargethispage*{2ex}

\newpage

\pagenumbering{arabic}

\setcounter{page}{1}
your report starts here...

On Wednesday 07 November 2001 08:01, Ritesh Jhaveri wrote:
> Hey people ...
> well u see im writing a report in lyx ..
> and have run into a problem..
> well u see the report starts with a few pages of introduction...
> table of contents ,.. list of figures ... acknowledgements ...
> and then my actual report starts from page 1 ...woth the preceeding pages
> being
> numbered in roman ...
> now i want these pages also to appear in the contents page ..
> but dont seem to find an option which suggests the same ...
> CAN u please help me out fast ...
>
>  ---Ritesh (Sticky!!!)



problem

2001-11-07 Thread Ritesh Jhaveri

Hey people ...
well u see im writing a report in lyx ..
and have run into a problem..
well u see the report starts with a few pages of introduction...
table of contents ,.. list of figures ... acknowledgements ...
and then my actual report starts from page 1 ...woth the preceeding pages
being
numbered in roman ... 
now i want these pages also to appear in the contents page ..
but dont seem to find an option which suggests the same ... 
CAN u please help me out fast ...

 ---Ritesh (Sticky!!!)




Installation problem, please Help!

2001-11-07 Thread Di, Yu

Hi, I am trying to install LyX on a Solaris SPARC box, "uname -a" shows
"SunOS ... 5.6 Generic_105181-23 sun4u sparc SUNW,Ultra-5_10", the compiler
is gcc/g++ 2.95.2. I compiled libXpm 4.7 with gcc, and compiled xforms 0.89
with Sun CC 4.2. 

The configuration was all right, and so was the main part of compilation.
But when it was trying to link the executable, it showed a very long error
message about symbol reference error, and could not create "lyx".

I am pasting the error output message to the end of this email, can anybody
point out to me what the problem is and how I can fix it? Thanks!

Di, Yu
Hull Group
311 S. Wacker Dr. Suite 1400
Chicago, IL 60606
Phone: 312-697-2912
Email: [EMAIL PROTECTED]
 
begin error
output--

/bin/sh ../libtool --mode=link g++  -g -O2 -fno-rtti -fno-exceptions
-L/scratch/apps/lib/ -Wl,-R/scratch/apps/lib/ -o lyx  BufferView.o
BufferView2.o BufferView_pimpl.o Bullet.o  Chktex.o ColorHandler.o
CutAndPaste.o DepTable.o FloatList.o Floating.o  FontInfo.o FontLoader.o
LColor.o LaTeX.o LaTeXFeatures.o LaTeXLog.o  LyXAction.o LyXSendto.o
LyXView.o MenuBackend.o Painter.o PainterBase.o  Sectioning.o Spacing.o
TextCache.o Timeout.o ToolbarDefaults.o  UpdateInset.o Variables.o
WorkArea.o bmtable.o buffer.o bufferlist.o  bufferparams.o
bufferview_funcs.o chset.o combox.o converter.o  counters.o credits.o
credits_form.o debug.o encoding.o exporter.o  filedlg.o font.o form1.o
gettext.o importer.o intl.o kbmap.o  kbsequence.o language.o lastfiles.o
layout.o layout_forms.o log_form.o  lyx.o lyx_cb.o lyx_gui.o lyx_gui_misc.o
lyx_main.o lyx_sty.o  lyxcursor.o lyxfont.o lyxfr0.o lyxfr1.o lyxfunc.o
lyxlex.o  lyxlex_pimpl.o lyxlookup.o lyxrc.o lyxrow.o lyxserver.o lyxvc.o
main.o  minibuffer.o paragraph.o print_form.o screen.o sp_form.o
spellchecker.o  tabular.o tabular-old.o tex-accent.o tex-strings.o texrow.o
text.o  text2.o tracer.o trans.o trans_mgr.o undo.o vc-backend.o vspace.o
mathed/libmathed.la insets/libinsets.la   graphics/libgraphics.la
frontends/libfrontends.la ../src/frontends/xforms/libxforms.la
frontends/libfrontends.la   frontends/support/libfrontendsupport.la
support/libsupport.la   ../sigc++/libsigc.la  -lforms -lXpm
`../sigc++/sigc-config --libs-names | sed -e 's/-lsigc//'`   -lSM -lICE
-liberty -lc -lm   -L/usr/openwin/lib -R/usr/openwin/lib -lX11 -lsocket
-lnsl
mkdir .libs
g++ -g -O2 -fno-rtti -fno-exceptions -L/scratch/apps/lib/
-Wl,-R/scratch/apps/lib/ -o lyx BufferView.o BufferView2.o
BufferView_pimpl.o Bullet.o Chktex.o ColorHandler.o CutAndPaste.o DepTable.o
FloatList.o Floating.o FontInfo.o FontLoader.o LColor.o LaTeX.o
LaTeXFeatures.o LaTeXLog.o LyXAction.o LyXSendto.o LyXView.o MenuBackend.o
Painter.o PainterBase.o Sectioning.o Spacing.o TextCache.o Timeout.o
ToolbarDefaults.o UpdateInset.o Variables.o WorkArea.o bmtable.o buffer.o
bufferlist.o bufferparams.o bufferview_funcs.o chset.o combox.o converter.o
counters.o credits.o credits_form.o debug.o encoding.o exporter.o filedlg.o
font.o form1.o gettext.o importer.o intl.o kbmap.o kbsequence.o language.o
lastfiles.o layout.o layout_forms.o log_form.o lyx.o lyx_cb.o lyx_gui.o
lyx_gui_misc.o lyx_main.o lyx_sty.o lyxcursor.o lyxfont.o lyxfr0.o lyxfr1.o
lyxfunc.o lyxlex.o lyxlex_pimpl.o lyxlookup.o lyxrc.o lyxrow.o lyxserver.o
lyxvc.o main.o minibuffer.o paragraph.o print_form.o screen.o sp_form.o
spellchecker.o tabular.o tabular-old.o tex-accent.o tex-strings.o texrow.o
text.o text2.o tracer.o trans.o trans_mgr.o undo.o vc-backend.o vspace.o
mathed/.libs/libmathed.a insets/.libs/libinsets.a
graphics/.libs/libgraphics.a frontends/.libs/libfrontends.a
../src/frontends/xforms/.libs/libxforms.a frontends/.libs/libfrontends.a
frontends/support/.libs/libfrontendsupport.a support/.libs/libsupport.a
../sigc++/.libs/libsigc.a -lforms -lXpm -lSM -lICE -liberty -lc -lm
-L/usr/openwin/lib -lX11 -lsocket -lnsl -R/usr/openwin/lib
-R/usr/openwin/lib
ld: warning: relocation error: R_SPARC_32: file
insets/.libs/libinsets.a(insetinclude.o): symbol
insert_unique__t8_Rb_tree5Zt12basic_string3ZcZt18string_char_traits1ZcZt24__
default_alloc_template2b0i0Zt4pair2ZCt12basic_string3ZcZt18string_char_trait
s1ZcZt24__default_alloc_template2b0i0Zt12basic_string3ZcZt18string_char_trai
ts1ZcZt24__default_alloc_template2b0i0Zt10_Select1st1Zt4pair2ZCt12basic_stri
ng3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b0i0Zt12basic_str
ing3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b0i0Zt4less1Zt12
basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b0i0Zt9
allocator1Zt12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_te
mplate2b0i0Gt17_Rb_tree_iterator3Zt4pair2ZCt12basic_string3ZcZt18string_char
_traits1ZcZt24__default_alloc_template2b0i0Z:
external symbolic relocation against non-allocatable section .stab;
cannot be processed at runtime: relocation ignored
Undefined   first referenced
 symbol   

Re: 1.1.6fix3 pictures no longer display ( eps ghostscript preview )

2001-11-07 Thread Morten S. Nielsen


On Mon, 24 Sep 2001 07:25:08 -0700 john wrote:

> well as someone said that doesn't work for everyone.
>
> If I could reproduce the problem I could debug it :(
>
> john

Sorry if this is a bit outdated, but this bug still seems to exist.

In figinset.C there seems to be a problem with execlp if one uses 
ghostscript 6.51 + 

The gs process starts but never exits. Why I don't know. One can go 
into /proc and see the commandline arguments, but this doesn't explain
where it hangs. If you're curious I could try to strace gs. But for now
I'll just report the workaround.

If using ghostscript 5.50 it always works fine. 

On my system lyx 1.1.6-fix3 works with Ghostscript 6.51 when setting  
\ps_command to "/usr/bin/gs "
in lyxrc.defaults or equivalent

It's the first argument to execlp which must end with a space (works
also when setting the first string to " ") 

Morten

Ps: the xhost trick didn't do it for me and I'm not on the lyx list.

-- 
- The Penguin's  1. We are better together than alone
- Postulate  2. If you push something hard enough it will fall over
- Morten S. Nielsen  Dept. of Manuf. Engineering and Management
- mailto:[EMAIL PROTECTED]  Building 425, 2. floor, DK-2800 Lyngby



can I undefine a latex command?

2001-11-07 Thread Guenter Milde

I wonder if there is some TeX magic, that lets me undefine a LaTeX command,
  \Re 
say.

Then I could write a math_macro that has also the right look opposed to the
present version with the präamble renewcommand:
  \renewcommand{\Re}{\mathrm{Re}}

(of course, a macro feature that lets the user choice between \newcommand
  \providecommand (or no latex command) and \renewcommand is still on my wishlist)

GM

--
[EMAIL PROTECTED]




Re: Octave support -- a wish

2001-11-07 Thread Andre Poenitz

On Wed, Nov 07, 2001 at 12:07:21PM +, Etienne Grossmann wrote:
>   Andre, maybe you can hack the following function so it produces lyx
>   code.

I just read in the output directly, it's even less code than coverting it
to LaTeX first.

So we could multiply matrices now:

[ 1  2  3 ]   [ 1  2  3 ]  [ 14  11  11 ]
| 2  3  1 | \cdot | 2  3  1 | ->  | 11  14  11 |
[ 3  1  2 ]   [ 3  1  2 ]  [ 11  11  14 ]

I guess we'll need some auto-insertion of "missing" multiplication signs
here, too...

Andre'

-- 
André Pönitz .. [EMAIL PROTECTED]



Re: Octave support -- a wish

2001-11-07 Thread Etienne Grossmann


  Hello,

  Andre, maybe you can hack the following function so it produces lyx
  code.

From: Tuukka Toivonen <[EMAIL PROTECTED]>

#  On Mon, 5 Nov 2001, Andre Poenitz wrote:

#  >>[ 1  2  3 ]
#  >>  A   = | 2  3  1 |
#  >>[ 3  1  2 ]
#  >>  |A| =
#  >Is there a way to export to LaTeX (or any other structured output for that
#  >matter) from within octave?

#  I don't think so, but Octave handles only matrices, ie. number arrays,
#  which are so simple that I don't think that would be necessary.
#  Parsing will be easy with a very simple code.
#  It's a different thing from support for Maxima... which can use LaTeX.

  Hth,

  Etienne




mat2tex.m
Description: Binary data




-- 
Etienne Grossmann -- http://www.isr.ist.utl.pt/~etienne



Re: scaling EPS how?

2001-11-07 Thread Thomas Steffen

Ralph Boland <[EMAIL PROTECTED]> writes:

> Unfortunately you cannot scale relative to the size of the original figure
> but must scale relative to page size.  Thus you must use your judgement
> if relative dimensions are to be maintained.

Yes, this is a long standing feature request of mine. Scaling a figure
to 50% of its orginal size is something so basic that it is a shame
LyX can't do it. 

Any volunteers? 

Thomas <[EMAIL PROTECTED]>
-- 
Umweltfreundlich, da aus recycleten Buchstaben.



Re: Octave support -- a wish

2001-11-07 Thread Andre Poenitz

On Tue, Oct 16, 2001 at 03:51:43PM -0400, Matej Cepl wrote:
> However, when working on my assignements, I usually had in other
> gnome-terminal window started octave for calculating determinants etc.
> While working on these assignements, I begun to dream about an
> improvement of LyX which would allow me to work with Octave exactly in
> LyX (something what could be done with much more primitive GNU Calc in
> Emacs). For example, let's have following in MathEd:
> 
> [ 1  2  3 ]
>   A   = | 2  3  1 |
> [ 3  1  2 ]
>   |A| = 
> 
> Now when pressing some hotkey, I would love that LyX would insert -18
> (determinant of the matrix A).


|  / 1  2  3 \  |
|  | 2  3  1 |  |   plus  "M-x math-extern octave run"
|  \ 3  1  2 /  |

now yields 

|  / 1  2  3 \  |
|  | 2  3  1 |  |   = -18
|  \ 3  1  2 /  |

I know that this is not exactly what you want, but I don't know how to
figure out what "previous" assignments and results are relevant. We
certainly can't fake a full blown octave session...

Maybe you have an idea.

> OK, I am sure, that it is so complicated, that a huge rewrite of Mathed
> would be required.

I guess so... ;-)

Andre'

-- 
André Pönitz .. [EMAIL PROTECTED]