Re: [NTG-context] scite

2003-09-30 Thread Hans Hagen
At 01:12 30/09/2003 +0900, you wrote:

I have the same trouble as Willi.  My SciTEUser.properties is definitely 
not being loaded.  If I put the import statements in my 
SciTEGlobal.properties, I get the ConTeXt menu items plus replacement of 
commands while I type.  However, there is no colouring and compile calls 
LaTeX.   Two questions:
1) Can we use the ConTeXt stuff with the SciTE distribution from the main 
SciTE website, or must we use the one from Pragma?
2) The standard SciTE distribution's SciTEGlobal.properties imports the 
main latex.properties.  Should we delete this?
I wonder why the user props are not loaded, this file should be in you 
Document And Setting \ SomeUserName path. If you open the file (options 
menu) you can see in the heading where it is located

Hans
-
  Hans Hagen | PRAGMA ADE | [EMAIL PROTECTED]
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-
   information: http://www.pragma-ade.com/roadmap.pdf
documentation: http://www.pragma-ade.com/showcase.pdf
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Re: Again: How to make empty pages by default empty?

2003-09-30 Thread Steffen Wolfrum
Patrick Gundlach [EMAIL PROTECTED] wrote:

 Steffen Wolfrum [EMAIL PROTECTED] writes:
 
 
  This \setupsectionblock[...part][page=no] is a good idea, 
  but the pagebreak definition was wrong. See this:
 
  \definepagebreak
  [chapter]
  [yes,header,right]
 
 
 I can't see any difference here.



I also can't see the difference between

\definepagebreak[chapter][empty,header,right]

and

\definepagebreak[chapter][yes,header,right]

But the first one gives three additional pages where just one is needed,
and the control over the empty page's header (empty or not) gets lost.

The [yes,header,right] solution gives just the page that is needed (for the next 
chapter to start on a right page) and this page is empty, finally.

Steffen
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Re: one page only in doublesided document?

2003-09-30 Thread Patrick Gundlach

Anybody any idea?



Patrick Gundlach [EMAIL PROTECTED] writes:

 \setuppagenumbering[alternative=doublesided]
 \starttext
 test
 \stoptext


 How do I get *one* page only?


Patrick
-- 
You are your own rainbow!
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] \chapter with \vbox?

2003-09-30 Thread Michal Kvasnicka
Dear friends.

I want to typeset a document on a grid. Moreover I want to typeset each 
chapter heading on a separate page this way:

\blank[5*line]
... here is motto...
\vfil
... here is the chapter title and chapter number...
\blank[5*line]
I must include it in a \vbox. I tried \vbox to \textheight, but now the 
motto doesn't fit to a grid. How could I do it? Many thanks for your help.

Michal Kvasnicka

P.S. My chapter setting is like this:

\setuphead[chapter]
 [page=,
  style={\ss\bfe\setupinterlinespace[line=\NormalBaselineskip]},
  numberstyle={\ss\bff\setupinterlinespace[line=\NormalBaselineskip]},
  before={\page\setuplayout[footer=0pt]\page[right]},
  after={\page\setuplayout[footer=3\NormalBaselineskip]},
  command=\MyChapterCommand]
\def\MyChapterCommand#1#2{%
 \vbox to \textheight{%
   \setupinterlinespace[line=\NormalBaselineskip]%
   \blank[5*line,force]%
   \startnarrower[left,right]%
 \leavevmode{\rm\tf\em\the\mottotoks}\par
   \stopnarrower
   \vskip0pt plus 1filll
   \hbox to \textwidth{\hss\vbox{\hsize=0.8\textwidth
 \startframedtext
   [width=0.8\textwidth,align={left,broad}, offset=1.5ex,
background=color, backgroundcolor=black]
   {\setupinterlinespace[line=28pt]\white #2}%
 \stopframedtext}}
   \kern-\baselineskip
   \vbox to 0pt{%
 \vss
 \hbox to \hsize{%
   \hss\bff #1%
   {\setbox0=\hbox{#1}\ifdim\wd0=0pt\else
   \hbox to0pt{.\hss}\hskip0.8\textwidth\strut\hskip2.5mm\fi}%
 }
   }
   \blank[4*line,force]
 }
\global\mottotoks={}
}
If trying the code, you must either define \ss\bfe and \ss\bff fonts, or 
remove them.

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Hans Hagen
At 18:00 30/09/2003 +0900, you wrote:

Setting an environment variable SciTE_HOME to the path of all my SciTE 
properties files helped.
I also changed the import latex statment in my SciTEGlobal.properties to 
import tex so that Hans'
new tex.properties is loaded instead.  I'm almost happy I have some work 
to do tonight so I can try it out. :-)
strange, i though that i'd put a SciTEGlobal.properties in wscite.zip; will 
look into it

Hans
-
  Hans Hagen | PRAGMA ADE | [EMAIL PROTECTED]
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-
   information: http://www.pragma-ade.com/roadmap.pdf
documentation: http://www.pragma-ade.com/showcase.pdf
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Matthew Huggett
Hans Hagen wrote:

At 18:00 30/09/2003 +0900, you wrote:

Setting an environment variable SciTE_HOME to the path of all my 
SciTE properties files helped.
I also changed the import latex statment in my 
SciTEGlobal.properties to import tex so that Hans'
new tex.properties is loaded instead.  I'm almost happy I have some 
work to do tonight so I can try it out. :-)


strange, i though that i'd put a SciTEGlobal.properties in wscite.zip; 
will look into it

You probably did.  I'm running the distribution from scintilla.org .

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Jules Colding
On Mon, 2003-09-29 at 14:49, Hans Hagen wrote:
 Hi,
 
 If you are in search for an editor:
 
 http://www.pragma-ade.com/scite/wscite.zip
 http://www.pragma-ade.com/scite/cscite.zip

Has anyone looked into an emacs mode?

-- 
  jules

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Matthew Huggett
Jules Colding wrote:

On Mon, 2003-09-29 at 14:49, Hans Hagen wrote:
 

Hi,

If you are in search for an editor:

http://www.pragma-ade.com/scite/wscite.zip
http://www.pragma-ade.com/scite/cscite.zip
   

Has anyone looked into an emacs mode?

 

Both Patrick Gundlach and Berend de Boer have some emacs stuff for ConTeXt.
Patrick has a ConTeXt command look up mode called etexshow
http://levana.de/emacs/
and Berend has a mode for syntax highlighting etc.
http://www.berenddeboer.net/emacs/context.el


___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Willi Egger


 At 01:12 30/09/2003 +0900, you wrote:

 I have the same trouble as Willi.  My SciTEUser.properties is definitely
 not being loaded.  If I put the import statements in my
 SciTEGlobal.properties, I get the ConTeXt menu items plus replacement of
 commands while I type.  However, there is no colouring and compile
calls
 LaTeX.   Two questions:
 1) Can we use the ConTeXt stuff with the SciTE distribution from the main
 SciTE website, or must we use the one from Pragma?
 2) The standard SciTE distribution's SciTEGlobal.properties imports the
 main latex.properties.  Should we delete this?

 I wonder why the user props are not loaded, this file should be in you
 Document And Setting \ SomeUserName path. If you open the file (options
 menu) you can see in the heading where it is located

 Hans

I tried in the meantime again. The SciTEUser.properties file resides in the
by Hans mentioned place.There are no other copies of this file in other
directories. I have set the environment variable so that I am able to start
sciTE from a cmd-window. The context.properties and the
cont*-scite.properties files reside in the directory where sciTE.exe lives.
The strange thing is, that after starting sciTE form the commandline I get
the list of cont-country-scite.properties in the options dialog but there
is no context.properties and also no metafun-scite.properties. Hence there
are also no commands available as defined in context.properties.

I am a bit puzzled.

Willi

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Re: scite

2003-09-30 Thread Patrick Gundlach
Jules Colding [EMAIL PROTECTED] writes:

Hi,

 Has anyone looked into an emacs mode?

I am slightly confused: This is a thread about scite and you ask
about emacs mode. Do you mean emacs related to scite (I wonder what
this could be) or emacs and ConTeXt?

If you mean emacs - ConTeXt there are two modes. One from Berend
de Boer based on emacs' original tex-mode and AUCTeX with ConTeXt
support. You need the current cvs-version of AUCTeX for this. 

And there is of course etexshow, the ConTeXt command browser for
emacs ( http://levana.de/emacs/ ).

Patrick
-- 
You are your own rainbow!
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Willi Egger
 Willi Egger wrote:

 
 
 At 01:12 30/09/2003 +0900, you wrote:
 
 
 
 I have the same trouble as Willi.  My SciTEUser.properties is
definitely
 not being loaded.  If I put the import statements in my
 SciTEGlobal.properties, I get the ConTeXt menu items plus replacement
of
 commands while I type.  However, there is no colouring and compile
 
 
 calls
 
 
 LaTeX.   Two questions:
 1) Can we use the ConTeXt stuff with the SciTE distribution from the
main
 SciTE website, or must we use the one from Pragma?
 2) The standard SciTE distribution's SciTEGlobal.properties imports the
 main latex.properties.  Should we delete this?
 
 
 I wonder why the user props are not loaded, this file should be in you
 Document And Setting \ SomeUserName path. If you open the file (options
 menu) you can see in the heading where it is located
 
 Hans
 
 
 
 I tried in the meantime again. The SciTEUser.properties file resides in
the
 by Hans mentioned place.There are no other copies of this file in other
 directories. I have set the environment variable so that I am able to
start
 sciTE from a cmd-window. The context.properties and the
 cont*-scite.properties files reside in the directory where sciTE.exe
lives.
 The strange thing is, that after starting sciTE form the commandline I
get
 the list of cont-country-scite.properties in the options dialog but
there
 is no context.properties and also no metafun-scite.properties. Hence
there
 are also no commands available as defined in context.properties.
 
 I am a bit puzzled.
 
 Willi
 

Matthew Huggett wrote:
 Have you tried setting a SciTE_HOME environment variable.  I set it to
 the path of SciTE.exe, which is where I'm keeping all the properties
 files.  After setting this, my SciTEUser.properties was loaded (it
 contains only import context and import metafun-scite).   I only had
 to edit the path to texexec and texutil in context.properties.  My only
 problem now is that I have no syntax highlighting.

So I have setup in the controlpanel of WIndows XP an environment variable
SciTE_HOME which points to the directory where sciTE.exe resides.
SciTEUser.properties file is still in the \document and settings\willi
directory.

What happens is, that I get a windowsize as I dimensioned it in the
SciTEUser.properties file.
I get in the options dialog de list of cont-country-scite.properties files
listed. There is however no context.properties and also no
metafun-scite.properties list entry.
I do not get the properties as predefined in context.properties (e.g. font,
commands, statusbar etc).

Apparently the file SciTEUser is found, but not executed correctly.

Do not know how to proceed.

Willi

P.S. when moving the SciTEUser.properties file to the directory of
sciTE.exe, I get the configuration asof there is no SciTEUser.properties
file.

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Kind of \setupfootnotes[way={bychapter,bychapterB}] ?

2003-09-30 Thread Steffen Wolfrum
Hi,

instead of chapters I use

\definehead[LevelOneA][chapter]
\definehead[LevelOneB][chapter]

As I would like the footnotes numbering reset with new chapters I use

\setupfootnotes[way=bychapter]


But reseting just works for LevelOneA.


How can this be? What would be the right way to reset by two different sections?


Thank you,

Steffen
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Context Ruby scripts

2003-09-30 Thread Hans Hagen
At 20:14 30/09/2003 +0900, you wrote:

Where can we get the ruby scripts that are mentioned in the new SciTE stuff?
concheck.rb is in the beta under ../context/ruby

Hans
-
  Hans Hagen | PRAGMA ADE | [EMAIL PROTECTED]
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-
   information: http://www.pragma-ade.com/roadmap.pdf
documentation: http://www.pragma-ade.com/showcase.pdf
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: scite

2003-09-30 Thread Hans Hagen
At 12:48 30/09/2003 +0200, you wrote:
On Tue, 2003-09-30 at 12:30, Patrick Gundlach wrote:
 Jules Colding [EMAIL PROTECTED] writes:

 Hi,

  Has anyone looked into an emacs mode?

 I am slightly confused: This is a thread about scite and you ask
 about emacs mode. Do you mean emacs related to scite (I wonder what
 this could be) or emacs and ConTeXt?
I meant emacs as an editor for ConTeXt.

 If you mean emacs - ConTeXt there are two modes. One from Berend
 de Boer based on emacs' original tex-mode and AUCTeX with ConTeXt
 support. You need the current cvs-version of AUCTeX for this.
Thanks!
patrick is working on extensive emacs support; when i have a bit more time 
we will start looking into (context sensitive) help based on the xml files 
that describe the user interface; the idea is to set up something that 
makes support in any editor convenient (i'll do scite, patrick emacs, 
whoever wants may do vim, or winedt or ...)

Hans

-
  Hans Hagen | PRAGMA ADE | [EMAIL PROTECTED]
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-
   information: http://www.pragma-ade.com/roadmap.pdf
documentation: http://www.pragma-ade.com/showcase.pdf
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Czech patterns in TeXlive2003

2003-09-30 Thread David Antos

Hello,

Petr Olsak has changed slightly Czech pattern file czhyph.tex for
TeXlive2003, it's a bit `Babelized' now. It produces \errmessage for
Babel's \addlanguage being \undefined. It also contains several ugly
hacks to make both plain and LaTeX read \v and \' syntax for Czech
accents, and finally it reads czhyphen.tex containing real patterns.

The result is that generating ConTeXt format ends with the \errmessage.
Simple workaround is to change alias in cont-usr.tex to pattern files
from czhyph.tex to czhyphen.tex. My discussion with Petr Olsak suggests
to make a more systematic correction: to add a test into czhyph.tex and
make it directly read czhyphen.tex if ConTeXt is detected.

This needs two things to make sure:
1. Is it OK to read patterns with \v and \' syntax into ConTeXt?
2. Is there a way to detect ConTeXt in order to put into czhyph.tex
something like:

\ifx\something-typical-to-detect-ConTeXt\undefined \else
% for ConTeXt
\input czhyphen.tex
\endinput \fi

Is there a more systematic/clean solution? Or shall I ask Petr Olsak to
change this in the czhyph.tex file?

Thanks,
D.A.

-- 
Science is what happens when preconception meets verification.
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] \starttable...\stoptable

2003-09-30 Thread Willi Egger
 Bernd wrote:
 Hi,

 is there a function like cline{1-2} in LaTeX
 to produce a frame around a special cell?

 thanks

This environment has colorsupport. I doubt that the line thickness can be
influenced for indidual cells.
I suggest that you have a look into the bTABLE -- eTABLE environment, which
has many more possibilities.

Willi

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Context Ruby scripts

2003-09-30 Thread Willi Egger
 Hans wrote

 At 20:14 30/09/2003 +0900, you wrote:

 Where can we get the ruby scripts that are mentioned in the new SciTE
stuff?

 concheck.rb is in the beta under ../context/ruby

Where is this?

Downloaded the beta, there are no files with extension rb. On the
Pragmasite/context/beta is no rubz folder 

Willi

 -
Hans Hagen | PRAGMA ADE | [EMAIL PROTECTED]
Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
 -
 information: http://www.pragma-ade.com/roadmap.pdf
  documentation: http://www.pragma-ade.com/showcase.pdf
 -

 ___
 ntg-context mailing list
 [EMAIL PROTECTED]
 http://www.ntg.nl/mailman/listinfo/ntg-context


___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Willi Egger
 Hans Hagen wrote:
 
 At 18:00 30/09/2003 +0900, you wrote:
 
 Setting an environment variable SciTE_HOME to the path of all my SciTE
 properties files helped.
 I also changed the import latex statment in my SciTEGlobal.properties
 to import tex so that Hans'
 new tex.properties is loaded instead.  I'm almost happy I have some
work
 to do tonight so I can try it out. :-)
 
 
 strange, i though that i'd put a SciTEGlobal.properties in wscite.zip;
 will look into it
 You probably did.  I'm running the distribution from scintilla.org .

Hans Hagen wrote:
 ah .. fetch the one from our site (based on the latest 1.55)

Hm, does not work for me. Okay I donwloaded first the version from Scintilla
site. Later I replaced this version with the version from the pragma-site.
Still the problems mentioned remain.

Willi



___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Matthew Huggett
Willi Egger wrote:

Hans Hagen wrote:

 

At 18:00 30/09/2003 +0900, you wrote:

   

Setting an environment variable SciTE_HOME to the path of all my SciTE
properties files helped.
I also changed the import latex statment in my SciTEGlobal.properties
to import tex so that Hans'
new tex.properties is loaded instead.  I'm almost happy I have some
 

work
 

to do tonight so I can try it out. :-)
 

strange, i though that i'd put a SciTEGlobal.properties in wscite.zip;
will look into it
   

You probably did.  I'm running the distribution from scintilla.org .
 

Hans Hagen wrote:
ah .. fetch the one from our site (based on the latest 1.55)
   

Hm, does not work for me. Okay I donwloaded first the version from Scintilla
site. Later I replaced this version with the version from the pragma-site.
Still the problems mentioned remain.
 

I just wiped out my installation from Scintilla and started again with 
the Pragma one.  I had to get the dll that Willi linked to earlier, but 
now everything works as expected. 
Matt

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Czech patterns in TeXlive2003

2003-09-30 Thread Hans Hagen
Hi David,

Petr Olsak has changed slightly Czech pattern file czhyph.tex for
TeXlive2003, it's a bit `Babelized' now. It produces \errmessage for
Babel's \addlanguage being \undefined. It also contains several ugly
hacks to make both plain and LaTeX read \v and \' syntax for Czech
accents, and finally it reads czhyphen.tex containing real patterns.
The result is that generating ConTeXt format ends with the \errmessage.
Simple workaround is to change alias in cont-usr.tex to pattern files
from czhyph.tex to czhyphen.tex. My discussion with Petr Olsak suggests
to make a more systematic correction: to add a test into czhyph.tex and
make it directly read czhyphen.tex if ConTeXt is detected.
This needs two things to make sure:
1. Is it OK to read patterns with \v and \' syntax into ConTeXt?
2. Is there a way to detect ConTeXt in order to put into czhyph.tex
something like:
\ifx\something-typical-to-detect-ConTeXt\undefined \else
% for ConTeXt
\input czhyphen.tex
\endinput \fi
Is there a more systematic/clean solution? Or shall I ask Petr Olsak to
change this in the czhyph.tex file?
Ah ... i just found that out yesterday and had on my agenda to ask you to 
look into it. I have now adapted cont-usr.tex and commented:

% \definefilesynonym [lang-cz.pat]  [czhyph.tex]
% \definefilesynonym [lang-cz.pat]  [skhyph.tex]
maybe you can trigger on:

\contextversion

Thanks for taking care of it.

Hans
-
  Hans Hagen | PRAGMA ADE | [EMAIL PROTECTED]
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-
   information: http://www.pragma-ade.com/roadmap.pdf
documentation: http://www.pragma-ade.com/showcase.pdf
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] context documentation

2003-09-30 Thread Hans Hagen
At 16:46 30/09/2003 +0200, you wrote:

actually I am currently working on an online reference thing based on
setup*.tex at the moment :). (+ wiki-like comments/examples/...)
I see this 'wiki' word all over the web, what does it mean?

Hans
-
  Hans Hagen | PRAGMA ADE | [EMAIL PROTECTED]
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-
   information: http://www.pragma-ade.com/roadmap.pdf
documentation: http://www.pragma-ade.com/showcase.pdf
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] XML command synonyms

2003-09-30 Thread Pawel Jackowski na Onet
Hi Hans, hi Simon!

First of all THANKS a lot for both of you for helpful hints and sugestions.
After many tests and experiments I decided to use
construction:

\def\XMLsynonym#1#2{%

\letcsnamecsname\csname\@@XMLelement:#1/\endcsname\csname\@@XMLelement:#2/\e
ndcsname

\letcsnamecsname\csname\@@XMLelement:#1\endcsname\csname\@@XMLelement:#2\end
csname

\letcsnamecsname\csname\@@XMLelement:/#1\endcsname\csname\@@XMLelement:/#2\e
ndcsname}

It works ok and suits me best since I (almost) understand HOW it works :)
Using constructions which I don't understand makes me a little bit
frustrated.
I'll do my best to understand other constructions as well.



Thanks a lot, Pawe/l


___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] scite

2003-09-30 Thread Willi Egger
Hi,
after all also here sciTE is doing what it should do. :-)

get the SciTE zip files from the Pragma-site:

http://www.pragma-ade.com/scite/wscite.zip
http://www.pragma-ade.com/scite/cscite.zip

get the MSVCR71.dll from:

http://cvs.osafoundation.org/index.cgi/osaf/chandler/Chandler/distrib/win/msvcr71.dll?sortby=log

Unpack the wscite.zip (will be umpacked into drive:\wscite)
Unpack also the cscite.zip into this directory.

For setting up your SciTE do the following:

1. Do not make an environment variable under Windows XP  (Home edition)
2. Add the path to SciTE.exe to the path systemvariable.
2. Copy the file context.properties to the directory drive:\Documents and
Settings\user
3. Start sciTE e.g. from the command prompt
4. Klick on the Options in the topbar.
5. Klick on the Open User Options File (SciTEUser.properties) listentry
6. Open the file context.properties in the directory drive:\Documents and
Settings\user
7. Edit in this file the lines where ruby and perl paths are defined  to
mach your own situation.
8. Edit the SciTEUser.properties file according to your needs (It might be
helpful to open also the SciTEGlobal.properties file under Options,
Open Global Options File in order to see  which settings you want
beyond the settings in context.properties). Add at least the lines
import context
import metafun-scite
9. Save all files.
10. Restart SciTE

If everything went ok, you should be smiling.

Willi

Willi

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: scite

2003-09-30 Thread Jules Colding
On Tue, 2003-09-30 at 14:59, Hans Hagen wrote:
 patrick is working on extensive emacs support; 

Is that the AUCTeX support that are in CVS or something else?

-- 
  jules

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] inserting other pdf's

2003-09-30 Thread Willi Egger
Hi Olivier,

Olivier wrote:
Subject: [NTG-context] inserting other pdf's


 Hi,
 I want to Know if it's possible to add others pdf files to a former one
 resulting from a ConteXt compilation.

 It's because I make technical drawings with Autocad wich are printed (at
 the right scale !) to a pdf file (By Distiller or Amunyi converter), and I
 want those in more general (text+drawings) documents.

 One solution is openoffice, but it's not the right place!

 Thanks a lot,
 olivier Turlier

Combining pdf pages is possible with the texexec perl script. Try to see the
options with texexec --help|more
Not easy but extremely strong!

Willi

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


RE: [NTG-context] inserting other pdf's

2003-09-30 Thread Michael Hallgren
pdf[la]tex's likely your friend,

mh

 -Message d'origine-
 De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] la
 part de free
 Envoyé : mardi 30 septembre 2003 21:56
 À : [EMAIL PROTECTED]
 Objet : [NTG-context] inserting other pdf's


 Hi,
 I want to Know if it's possible to add others pdf files to a former one
 resulting from a ConteXt compilation.

 It's because I make technical drawings with Autocad wich are printed (at
 the right scale !) to a pdf file (By Distiller or Amunyi
 converter), and I
 want those in more general (text+drawings) documents.

 One solution is openoffice, but it's not the right place!

 Thanks a lot,
 olivier Turlier
 ___
 ntg-context mailing list
 [EMAIL PROTECTED]
 http://www.ntg.nl/mailman/listinfo/ntg-context




___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re[2]: [NTG-context] Context Ruby scripts

2003-09-30 Thread Giuseppe Bilotta
Tuesday, September 30, 2003 Hans Hagen wrote:

 At 16:30 30/09/2003 +0200, you wrote:

Downloaded the beta, there are no files with extension rb. On the
Pragmasite/context/beta is no rubz folder 

 ah, i see, i don't zip *.rb -)

BTW Hans, could you please switch to .tar.bz2 for the package?
It packs *much* more than plain .zip (1.4Mb vs 2Mb ...)

-- 
Giuseppe Oblomov Bilotta

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context