Re: [NTG-context] Slanted, double-quoted quotations

2014-10-21 Thread Sander Maijers
Great, thanks for reporting.

Sander Maijers

On Mon, Oct 20, 2014 at 5:42 PM, Rik r...@panix.com wrote:

  On 2014-10-20 10:08, Sander Maijers wrote:

  I am wondering likewise.

  Sander,

 The question has been mooted. The first beta (of two) on 2014-10-16
 resolved the issue, and the result of your example is what the text in it
 describes.

 --
 rik


 ___
 If your question is of interest to others as well, please add an entry to
 the Wiki!

 maillist : ntg-context@ntg.nl /
 http://www.ntg.nl/mailman/listinfo/ntg-context
 webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
 archive  : http://foundry.supelec.fr/projects/contextrev/
 wiki : http://contextgarden.net

 ___

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

[NTG-context] Extra line in a list

2014-10-21 Thread Fabrice Couvreur
Hi,
In the code below, why is there an extra line in the first item ?
Best regards,
Fabrice

\usesymbols[mvs]
\setupsymbolset[europe]

\starttext

\startitemize[n][stopper={.},style=bold]
\item
\startitemize[a][stopper={.},style=bold]
\item On pose $P_A=9$ et $P_B=7$.

On a alors $\frac{1}{2}P_A+\frac{1}{2}P_B=4,5+3,5=8$.

Le prix du kilogramme de mélange $M_1$ dont la moitié est de variété A est
donc de 8 \symbol[EUR].
\item $\frac{1}{4}P_A+\frac{3}{4}P_B=2,25+5,25=7,5$.

Le prix du kilogramme de mélange $M_2$ contenant $\frac{1}{4}$ de variété A
est donc de 7,5 \symbol[EUR].
\item $\frac{3}{5}P_A+\frac{2}{5}P_B=5,4+2,8=8,2$.

Le prix du kilogramme de mélange $M_3$ contenant $\frac{2}{5}$ de variété B
est donc de 8,2 \symbol[EUR].
\stopitemize
\stopitemize
\stoptext
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

Re: [NTG-context] \startanimation and \dorecurse

2014-10-21 Thread Jeong Dal
Dear Wolfgang,

Thank you for a nice solution.

I applied your method to produce an animation which draw a circle using the 
following:


\usemodule[animation]
\setupinteraction[state=start]
\startuseMPgraphic{Circles}{s}
numeric sn, L, N;
path p, q;
p := fullcircle scaled 72;
L:=length p;
N:=20;
sn:= \MPvar{s};
q := subpath (0, sn/N*L) of p;%
draw q withcolor red;
fill fullcircle scaled 3 shifted point length q of q withcolor blue;
setbounds currentpicture to unitsquare shifted (-0.5,-0.5) scaled 75;
\stopuseMPgraphic
\starttext
\startanimation
\dorecurse{20}
{\startexpanded
%\setupMPvariables[Circles][s]
\useMPgraphic{Circles}{s=\recurselevel}
\stopexpanded}
\stopanimation
\stoptext
%%

However, it just draw 20 figures instead of making an animation.

Would you please tell me what is wrong in the above code?

Thank you.

Best regards,

Dalyoung
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

Re: [NTG-context] \startanimation and \dorecurse

2014-10-21 Thread Wolfgang Schuster

 Am 21.10.2014 um 14:08 schrieb Jeong Dal hak...@me.com:
 
 Dear Wolfgang,
 
 Thank you for a nice solution.
 
 I applied your method to produce an animation which draw a circle using the 
 following:
 
 
 \usemodule[animation]
 \setupinteraction[state=start]
 \startuseMPgraphic{Circles}{s}
 numeric sn, L, N;
 path p, q;
 p := fullcircle scaled 72;
 L:=length p;
 N:=20;
 sn:= \MPvar{s};
 q := subpath (0, sn/N*L) of p;%
 draw q withcolor red;
 fill fullcircle scaled 3 shifted point length q of q withcolor blue;
 setbounds currentpicture to unitsquare shifted (-0.5,-0.5) scaled 75;
 \stopuseMPgraphic
 \starttext
 \startanimation
 \dorecurse{20}
 {\startexpanded
 %\setupMPvariables[Circles][s]
 \useMPgraphic{Circles}{s=\recurselevel}
 \stopexpanded}
 \stopanimation
 \stoptext
 %%
 
 However, it just draw 20 figures instead of making an animation.
 
 Would you please tell me what is wrong in the above code?

You have to put each meatiest graphic into a frame, there are three ways to 
create a frame.

1. Use braces around the frame

\startanimation
  {First frame}
  {Second frame}
  {Third frame}
\stopanimation

This method doesn’t work in your case where you use \dorecurse to create the 
graphics.


2. Use the \frame command.

\startanimation
  \frame{First frame}
  \frame{Second frame}
  \frame{Third frame}
\stopanimation

In this case the \frame command is used store the content for each frame, this 
can be used
when you create all frames with a loop like in your case, e.g.

\dorecurse{10}{\expanded{\frame{\useMPPgraphic{…}{var=\recurselevel


3. Use the \startframe environment.

\startanimation
  \startframe First frame \stopframe
  \startframe Second frame \stopframe
  \startframe Third frame \stopframe
\stopaniamtion

This is the same as the second method except that you use star/stop delimiters
for each frame content instead of putting it into a argument.

Wolfgang
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

[NTG-context] ConTeXt Standalone will not install

2014-10-21 Thread Jaroslav Hajtmar

Hello ConTeXist.
Some time ago I changed a installing TeX Live directly from version 2012 
to version 2014.
ConTeXt in this version TeX Live works seamlessly, but I have since 
stopped working update Standalone version. But I'm not entirely sure 
causation. Anyway, the update does not work as before. At first glance, 
it seems that the updates are performed correctly, but the files are not 
probably somehow eventually copied. I am not subsequently able to 
compile things that require the latest version of ConTeXt.
I must say that I am in a one moment delete the entire directory 
texmf-cache, because I began to discover a strange message about the 
mischmasch format of ConTeXt.


OK. Nothing to do. When I after a vain attempt failed ConTeXt update to 
the latest version, so I decided to ConTeXt Standalone completely 
re-install into my Windows 7 home edition. Installation failed, although 
I followed the instructions exactly to ConTeXtgarden 
(http://wiki.contextgarden.net/ConTeXt_Standalone). Creates only the TeX 
directory and there empty directories (cache-texmf, texmf-fonts, 
texmf-local texmf and texmf-modules-project). These directories do not 
contain any files. I attach below the log file during installation.


I tried a second installation method cited in ConTeXt ConTeXtGarden (see 
http://wiki.contextgarden.net/Simple_Windows_Installation).
Link to the installation file is broken (see 
http://minimals.contextgarden.net/setup/context-installer/ContextMinimalInstall.exe)


Can anyone advise what I'm doing wrong and why you can not install 
ConTeXt? Nowhere does not say anything about setting the path 
respectively next steps. Blame those problems installing TeX Live 2014?

Thanks for the advice.
Jaroslav Hajtmar

Here is log file from instalation:

receiving incremental file list
./
kpathsea620w64.dll
luatex.dll
mtxrun.dll
mtxrun.exe
mtxrun.lua

sent 22928 bytes  received 5501341 bytes  356404.45 bytes/sec
total size is 9371026  speedup is 1.70

mtxrun  | forcing cache reload
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/Users/Jaroslav  Hajtmar/texmf/web2c' from specification 
'home:texmf/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on weird path 
'C:/context/bin' from specification 'selfautoloc:'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/bin/share/texmf-local/web2c' from specification 
'selfautoloc:/share/texmf-local/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/bin/share/texmf-dist/web2c' from specification 
'selfautoloc:/share/texmf-dist/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/bin/share/texmf/web2c' from specification 
'selfautoloc:/share/texmf/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/bin/texmf-local/web2c' from specification 
'selfautoloc:/texmf-local/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/bin/texmf-dist/web2c' from specification 
'selfautoloc:/texmf-dist/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/bin/texmf/web2c' from specification 'selfautoloc:/texmf/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on weird path 
'C:/context' from specification 'selfautodir:'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/share/texmf-local/web2c' from specification 
'selfautodir:/share/texmf-local/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/share/texmf-dist/web2c' from specification 
'selfautodir:/share/texmf-dist/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/share/texmf/web2c' from specification 
'selfautodir:/share/texmf/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/texmf-local/web2c' from specification 
'selfautodir:/texmf-local/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/texmf-dist/web2c' from specification 
'selfautodir:/texmf-dist/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/context/texmf/web2c' from specification 'selfautodir:/texmf/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'$SELFAUTOGRANDPARENT/texmf-local/web2c' from specification 
'$SELFAUTOGRANDPARENT/texmf-local/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on weird path 
'C:/' from specification 'selfautoparent:'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/share/texmf-local/web2c' from specification 
'selfautoparent:/share/texmf-local/web2c'
resolvers   | resolving | looking for 'texmfcnf.lua' on given path 
'C:/share/texmf-dist/web2c' from specification 
'selfautoparent:/share/texmf-dist/web2c'
resolvers   | resolving | looking for 

Re: [NTG-context] ConTeXt Standalone will not install

2014-10-21 Thread Hans Hagen

On 10/21/2014 11:32 PM, Jaroslav Hajtmar wrote:

Hello ConTeXist.
Some time ago I changed a installing TeX Live directly from version 2012
to version 2014.
ConTeXt in this version TeX Live works seamlessly, but I have since
stopped working update Standalone version. But I'm not entirely sure
causation. Anyway, the update does not work as before. At first glance,
it seems that the updates are performed correctly, but the files are not
probably somehow eventually copied. I am not subsequently able to
compile things that require the latest version of ConTeXt.
I must say that I am in a one moment delete the entire directory
texmf-cache, because I began to discover a strange message about the
mischmasch format of ConTeXt.


you don't have the two bin trees in your path do you?


OK. Nothing to do. When I after a vain attempt failed ConTeXt update to
the latest version, so I decided to ConTeXt Standalone completely
re-install into my Windows 7 home edition. Installation failed, although
I followed the instructions exactly to ConTeXtgarden
(http://wiki.contextgarden.net/ConTeXt_Standalone). Creates only the TeX
directory and there empty directories (cache-texmf, texmf-fonts,
texmf-local texmf and texmf-modules-project). These directories do not
contain any files. I attach below the log file during installation.


how clean did you start? really nothing? by fetching the win32 or win64 
zip?



I tried a second installation method cited in ConTeXt ConTeXtGarden (see
http://wiki.contextgarden.net/Simple_Windows_Installation).
Link to the installation file is broken (see
http://minimals.contextgarden.net/setup/context-installer/ContextMinimalInstall.exe)


is that installer ok anyway? at some point mojca changed the structure 
bit and maybe that installer was not adapted (it's not an official part 
of the minimals)



Can anyone advise what I'm doing wrong and why you can not install
ConTeXt? Nowhere does not say anything about setting the path
respectively next steps. Blame those problems installing TeX Live 2014?
Thanks for the advice.
Jaroslav Hajtmar



Here is log file from instalation:

receiving incremental file list
./
kpathsea620w64.dll
luatex.dll
mtxrun.dll
mtxrun.exe
mtxrun.lua

sent 22928 bytes  received 5501341 bytes  356404.45 bytes/sec
total size is 9371026  speedup is 1.70


ok, so 64 bit?

Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

Re: [NTG-context] ConTeXt Standalone will not install

2014-10-21 Thread Jaroslav Hajtmar

Thanx Hans for quick reply.
My coments are bottom in the text of mail

Dne 22.10.2014 0:01, Hans Hagen napsal(a):

On 10/21/2014 11:32 PM, Jaroslav Hajtmar wrote:

Hello ConTeXist.
Some time ago I changed a installing TeX Live directly from version 2012
to version 2014.
ConTeXt in this version TeX Live works seamlessly, but I have since
stopped working update Standalone version. But I'm not entirely sure
causation. Anyway, the update does not work as before. At first glance,
it seems that the updates are performed correctly, but the files are not
probably somehow eventually copied. I am not subsequently able to
compile things that require the latest version of ConTeXt.
I must say that I am in a one moment delete the entire directory
texmf-cache, because I began to discover a strange message about the
mischmasch format of ConTeXt.


you don't have the two bin trees in your path do you?


My users variable path:
C:\texlive\2014\bin\win32;C:\Program Files (x86)\PC Connectivity 
Solution\; C:\Program Files\Common Files\Microsoft Shared\Windows 
Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows 
Live;C:\texlive\support\exe\sw\wscite;C:\Program 
Files\ImageMagick-6.6.4-Q16;C:\Perl64\site\bin;C:\Perl64\bin; 
C:\1da\support\exe;C:\1da\support\batch;C:\Ruby\bin;C:\Windows\system32; 
C:\Windows;C:\Windows\System32\Wbem; 
C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Dell\Dell 
Wireless WLAN Card;c:\Program Files\WIDCOMM\Bluetooth 
Software\;c:\Program Files\WIDCOMM\Bluetooth 
Software\syswow64;c:\Program Files (x86)\ATI 
Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Common 
Files\Roxio Shared\DLLShared\;c:\Program Files (x86)\pstoedit; 
C:\Program Files (x86)\gs\gs8.71\bin;C:\Program Files (x86) 
\ghostgum\gsview;C:\Program Files\Tracker Software\PDF 
Viewer\;C:\Program Files (x86)\Kofax\ImgCtls\bin;C:\Program Files 
(x86)\Windows Live\Shared; C:\Program Files 
(x86)\SumatraPDF\SumatraPDF.exe;C:\Program Files (x86) 
\Inkscape\Inkscape.exe


My system variable path:
C:\Program Files\ImageMagick-6.8.7-Q16;C:\Program Files (x86)\PC 
Connectivity 
Solution\;C:\texlive\2014\bin\win32;C:\texlive\support\exe\sw\wscite; 
C:\Perl64\site\bin;C:\Perl64\bin;C:\1da\support\exe;C:\1da\support\batch; C:\Ruby\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem; 
%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files\Dell\Dell 
Wireless WLAN Card;c:\Program Files\WIDCOMM\Bluetooth 
Software\;c:\Program Files\WIDCOMM\Bluetooth 
Software\syswow64;c:\Program Files (x86)\ATI 
Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Common 
Files\Roxio Shared\DLLShared\;c:\Program Files 
(x86)\pstoedit;C:\Program Files (x86) \gs\gs8.71\bin;C:\Program 
Files (x86)\ghostgum\gsview;C:\Program Files\Tracker Software\PDF 
Viewer\;C:\Program Files (x86)\Kofax\ImgCtls\bin; C:\Program Files 
(x86)\SumatraPDF\SumatraPDF.exe;C:\Program Files (x86) 
\PDFtk\bin\;C:\Program Files (x86)\Inkscape\



I have no ConTeXt Standalone in Path, but before I start ConTeXt I 
running the batch file containing:


@echo off
C:\WINDOWS\System32\cmd.exe /k C:\context\tex\setuptex.bat C:\context\tex
set MTX_PDFVIEW_METHOD=PDFXCview






OK. Nothing to do. When I after a vain attempt failed ConTeXt update to
the latest version, so I decided to ConTeXt Standalone completely
re-install into my Windows 7 home edition. Installation failed, although
I followed the instructions exactly to ConTeXtgarden
(http://wiki.contextgarden.net/ConTeXt_Standalone). Creates only the TeX
directory and there empty directories (cache-texmf, texmf-fonts,
texmf-local texmf and texmf-modules-project). These directories do not
contain any files. I attach below the log file during installation.


how clean did you start? really nothing? by fetching the win32 or 
win64 zip?
I like install 64bit version, but a while ago I tried to install the 
32-bit version and also without success ...





I tried a second installation method cited in ConTeXt ConTeXtGarden (see
http://wiki.contextgarden.net/Simple_Windows_Installation).
Link to the installation file is broken (see
http://minimals.contextgarden.net/setup/context-installer/ContextMinimalInstall.exe) 



is that installer ok anyway? at some point mojca changed the structure 
bit and maybe that installer was not adapted (it's not an official 
part of the minimals)


Link to the installation file is not functional, so I can not try to do 
the installation...

Can anyone advise what I'm doing wrong and why you can not install
ConTeXt? Nowhere does not say anything about setting the path
respectively next steps. Blame those problems installing TeX Live 2014?
Thanks for the advice.
Jaroslav Hajtmar



Here is log file from instalation:

receiving incremental file list
./
kpathsea620w64.dll
luatex.dll
mtxrun.dll
mtxrun.exe
mtxrun.lua

sent 22928 bytes  received 5501341 bytes  356404.45 bytes/sec
total size is 9371026  speedup is 1.70


ok, so 64 bit?

Hans


A while ago I tried to install