Re: [NTG-context] (No subject header)

2021-12-27 Thread Hans Hagen via ntg-context

On 12/27/2021 9:27 PM, Thomas Savary via ntg-context wrote:

Thanks, Hans, for your advice.

 > a probably more reliable solution is to 'remove bad stuff' from the
 > loaded font by running over the features and removing bad matches
 > (which is less sensitive for order)

I could edit the font features, indeed, but I run a GNU/Linux OS, and 
Fontforge cannot edit nor generate variable fonts. There seems to be a 
solution (https://www.youtube.com/watch?v=xoQuWARCUWI 
 ), but so far beyond my 
technical capabilities that I cannot consider it.


 > is that really a google font? afaik it doesn't originate there (unless
 > it among those things that google grabs - and at some point possible
 > discards)

Yes, it is, but not from the beginning. A great Garamond, the original 
font was designed by Georg Duffner. A few years ago, Google decided to 
make it a more complete font family : Octavio Pardo has done an 
excellent job with the bolder versions of EB Garamond and its conversion 
to a variable font. However, for whatever reasons, he did quite a rush 
job with the OpenType features ! Many essential features are lacking 
(despite the needed glyphs still being there), and most present features 
are poorly implemented, with a lot of typographic nonsense (concerning 
long s and long Q or the mentioned italic ligatures, for instance).


Strange, so basically only the shapes were taken an not the (in this 
case closely related features)?
https://fonts.google.com/specimen/EB+Garamond 



I will contact Google Fonts shortly to report on the dozens of problems 
I have encountered that make the unfixed new version of EB Garamond 
unusable for anything but the most basic uses.


Fortunately, my significantly more demanding needs for a client were met 
with the invaluable help from LuaTeX, but that won't be enough for my 
own projects, much more complex (facsimile of ancient editions), until 
Google improves this font.
So actually the old pre-google fonts from GD are better? Hopefully they 
then stay available someplace.


Hans



-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2021-07-18 Thread Wolfgang Schuster

T. Kurt Bond schrieb am 17.07.2021 um 08:38:

I have the following file:

\setupfloat[table][default=nonumber]

\starttext
\section[title={Tables without force}]

Here is a table without a caption, unforced.

\startplacetable[location=none]
   \bTABLE
   \bTR\bTD r1c1 \eTD\bTD r1c2\eTD\eTR
   \bTR\bTD r2c1 \eTD\bTD r2c2\eTD\eTR
   \eTABLE
\stopplacetable

Here is a table with a caption, unforced.

\startplacetable[title={Table With A Caption}]
   \bTABLE
   \bTR\bTD r1c1 \eTD\bTD r1c2\eTD\eTR
   \bTR\bTD r2c1 \eTD\bTD r2c2\eTD\eTR
   \eTABLE
\stopplacetable

This is after the table with a caption.


\section[title={Tables with force}]

Here is a table without a caption, forced.

\startplacetable[location={force,none}]
   \bTABLE
   \bTR\bTD r1c1 \eTD\bTD r1c2\eTD\eTR
   \bTR\bTD r2c1 \eTD\bTD r2c2\eTD\eTR
   \eTABLE
\stopplacetable

Here is a table with a caption, forced.

\startplacetable[title={Table With A Caption},location=force]
   \bTABLE
   \bTR\bTD r1c1 \eTD\bTD r1c2\eTD\eTR
   \bTR\bTD r2c1 \eTD\bTD r2c2\eTD\eTR
   \eTABLE
\stopplacetable

This is after the table with a caption.
\stoptext


The second pair of tables have force added.
[...]
Why does the last table have "Table 1", when there is a 
\setupfloat[table][default=nonumber]?


The default value is only used when you provide no arguments to the 
location key which isn't the case for your last table. To get rid of the 
counter add "nonumber" to the location argument, e.g.


\startplacetable[title=...,location={nonumber,force}]

but you can also disable the counter for all table floats with

\setupcaption [table] [number=no].

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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2021-07-18 Thread Pablo Rodriguez
On 7/17/21 8:38 AM, T. Kurt Bond wrote:
> I have the following file:
>
> \setupfloat[table][default=nonumber]
>
> \starttext
> \startplacetable[title={Table With A Caption},location=force]
>   \bTABLE
>   \bTR\bTD r2c1 \eTD\bTD r2c2\eTD\eTR
>   \eTABLE
> \stopplacetable
> \stoptext
> [...]
> Why does the last table have "Table 1", when there is
> a \setupfloat[table][default=nonumber]?

Hi Kurt,

I think this might be what you intend:

   \setupcaption[table][number=no]

   \starttext
   \startplacetable[title={Table With A Caption},location=force]
 \bTABLE
 \bTR\bTD r2c1 \eTD\bTD r2c2\eTD\eTR
 \eTABLE
   \stopplacetable
   \stoptext

As to your quetsion, I have no idea why this happens.

Just in case it might help,

Pablo
--
http://www.ousia.tk
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2021-03-13 Thread Jano Kula
Hello!

On Sat, Mar 13, 2021 at 6:09 PM Jeroen  wrote:

> I have the following document, but I want a different
> \setuplayout[backspace] for the titlepage and copyright space. What is
> the best way to achieve this?
>

https://wiki.contextgarden.net/Layout
section Multiple layouts

J.
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2020-06-17 Thread Malte Frank Gerdes
I am rarely using mailing lists, so i hope that i do it right :).

Thanks for the help, Taco.

I added an entry to the Wiki, but i'm not sure if it is sufficient this
way and if it needs approval/review or something.

Malte
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2020-06-17 Thread Hans Hagen

On 6/17/2020 3:46 PM, Taco Hoekwater wrote:


Like this (an arrangement that uses two physical pages, that is
where the \poparrangedpagesAB and \arrangedpageA / \arrangedpageB
come from):

\installpagearrangement 1*4*reversed
   {\dosetuparrangement{2}{2}{4}{3}{3}% X,Y,Total,hcutmarks,vcutmarks
\pusharrangedpageFOURSINGLESIDEDFOLDEDREVERSED\poparrangedpagesAB\relax}

\def\pusharrangedpageFOURSINGLESIDEDFOLDEDREVERSED#1%
  {\advancearrangedpageN
   \reportarrangedpage\arrangedpageN
   \ifcase\arrangedpageN
   \or \handlearrangedpageXandY{#1}010\arrangedpageA %  1 rot,hskip,vskip
   \or \handlearrangedpageXandY{#1}111\arrangedpageA %  2
   \or \handlearrangedpageXandY{#1}101\arrangedpageA %  3
   \or \handlearrangedpageXandY{#1}000\arrangedpageA %  4
   \or \handlearrangedpageXandY{#1}000\arrangedpageB %  5
   \or \handlearrangedpageXandY{#1}010\arrangedpageB %  6
   \or \handlearrangedpageXandY{#1}001\arrangedpageB %  7
   \or \handlearrangedpageXandY{#1}011\arrangedpageB %  8
 \poparrangedpages
   \fi}

Best wishes,
Taco
You forgot to mention that the price to pay for this nice solution it 
that Malte needs to wikify it ...


Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2020-06-17 Thread Taco Hoekwater

Like this (an arrangement that uses two physical pages, that is
where the \poparrangedpagesAB and \arrangedpageA / \arrangedpageB 
come from):

\installpagearrangement 1*4*reversed
  {\dosetuparrangement{2}{2}{4}{3}{3}% X,Y,Total,hcutmarks,vcutmarks
   \pusharrangedpageFOURSINGLESIDEDFOLDEDREVERSED\poparrangedpagesAB\relax}

\def\pusharrangedpageFOURSINGLESIDEDFOLDEDREVERSED#1%
 {\advancearrangedpageN
  \reportarrangedpage\arrangedpageN
  \ifcase\arrangedpageN
  \or \handlearrangedpageXandY{#1}010\arrangedpageA %  1 rot,hskip,vskip
  \or \handlearrangedpageXandY{#1}111\arrangedpageA %  2
  \or \handlearrangedpageXandY{#1}101\arrangedpageA %  3
  \or \handlearrangedpageXandY{#1}000\arrangedpageA %  4
  \or \handlearrangedpageXandY{#1}000\arrangedpageB %  5
  \or \handlearrangedpageXandY{#1}010\arrangedpageB %  6
  \or \handlearrangedpageXandY{#1}001\arrangedpageB %  7
  \or \handlearrangedpageXandY{#1}011\arrangedpageB %  8
\poparrangedpages
  \fi}

Best wishes,
Taco



> On 17 Jun 2020, at 13:31, Malte Frank Gerdes  wrote:
> 
> Hi,
> 
> I'm new to context and found this
> 
> ```
> \installpagearrangement 1*4*reversed
>   {\dosetuparrangement{2}{2}{4}{3}{3}% X,Y,Total,hcutmarks,vcutmarks
>
> \pusharrangedpageFOURSINGLESIDEDFOLDEDREVERSED\poparrangedpagesTWO\relax}
> 
> \def\pusharrangedpageFOURSINGLESIDEDFOLDEDREVERSED#1%
>  {\advancearrangedpageN
>   \reportarrangedpage\arrangedpageN
>   \ifcase\arrangedpageN
>   \or \handlearrangedpageXandY{#1}010\arrangedpageA %  1 rot,hskip,vskip
>   \or \handlearrangedpageXandY{#1}111\arrangedpageA %  2
>   \or \handlearrangedpageXandY{#1}101\arrangedpageA %  3
>   \or \handlearrangedpageXandY{#1}000\arrangedpageA %  4
> \poparrangedpages
>   \fi}
> 
> \setuppapersize [A10][A8]
> \setuparranging [1*4*reversed]
> \setuplayout[margin=0pt, width=fit]
> 
> \showframe
> 
> \starttext
> \dorecurse{8}{\vbox to \textheight{\vfill\midaligned{\tfd ABC}\vfill}\page}
> \stoptext
> ```
> 
> imposition scheme in the garden wiki and tried it out. Now i noticed
> that this sets the imposition scheme for *every* page, but i would like
> to have a different scheme on the second page (1*4), how do i set that
> (if this is even possible)? 
> 
> The result should look like 
> 
> ```
> P4 P1
> R3 R2
> 
> P5 P6
> P7 P8
> ```
> 
> where 5-8 should be on the back of 1-4 (double sided).
> 
> Thanks in advacne for any help :)
> 
> Malte
> ___
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki : http://contextgarden.net
> ___

Taco Hoekwater
Elvenkind BV




___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2019-04-04 Thread Hans Hagen

On 4/4/2019 9:30 PM, Dmitry Starostin wrote:

In terminal:

mtxrun --autogenerate --script context --autopdf Test.tex

->

resolvers       | initialization | fatal error: kpse library is accessed 
(key: default_texmfcnf)
this normally means that there is no file database ... context mkiv nor 
lmtx doesn't use kpse


Hans



-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2019-03-22 Thread Alan Braslau
On Fri, 22 Mar 2019 14:34:25 +0300
dstaros...@yandex.ru wrote:

> specification=chicago

Doesn't exist, hasn't been written...
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2019-01-04 Thread Hans Hagen

On 1/4/2019 1:39 AM, Lars wrote:

Hi there,

somehow floats that I place with keywords location=left or 
location=rightcreate a blank page first. Am I missing anything? I am 
sure that this wasn't the case before 19.12.2018. Right now I have the 
recent 03.01.2019 version.


My MWE and an image of the output:

i'll fix it


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

Re: [NTG-context] (no subject)

2016-07-18 Thread Fabrice Couvreur
Hi Otared,
thanks, in fact, the placement of the \placerecipe{}{} in the text determines
the placement of the framed in the right margin if I understand.
Fabrice

2016-07-17 10:46 GMT+02:00 Otared Kavian :

> Hi Fabrice,
>
> If you want the framed box to be placed on the same baseline as the letter
> A, in the example, then you have to tell ConTeXt to place a margin material
> right after A, as in
>
>
> A\\ \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> B \\ C
>
> and you can play with setupframed by choosing an option « low » or » high
> » according to your desire.
>
> Best regards: Otared
>
>
> > On 16 Jul 2016, at 23:23, Fabrice Couvreur 
> wrote:
> >
> > Hi Kavian,
> > Okay, but I do not understand why the top of the framed can not be on
> the baseline of the letter A.
> > Fabrice
> >
> > 2016-07-16 11:28 GMT+02:00 Otared Kavian :
> > Hi Fabrice,
> >
> > Indeed you can place your float a little bit higher in th emargin, as in
> the example below, by using the keyword « high ».
> >
> > Best regrads: Otared K.
> > % begin fabrice-inmargin.tex
> > \setuplayout
> >   [width=13cm,
> >rightmargin=5cm]
> >
> > \setupbodyfont[pagella,11pt]
> >
> > \definefloat
> >[recipe]
> >[figure]
> >
> > \setupfloat
> >[recipe]
> >[default={rightmargin,none,high}]
> >
> > \setupframed
> >   [frame=on,
> >width=\rightmarginwidth,
> >align=justify,
> >offset=2pt,
> >location=low,
> >rulethickness=1pt,
> >framecolor=darkred,
> >corner=00]
> >
> > \showgrid
> > \showframe
> >
> > \starttext
> >
> > A\\ B \\ C
> > \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> >
> > \input ward.tex
> >
> > \setupfloat
> >[recipe]
> >[default={rightmargin,none,low}]
> >
> > A\\ B \\ C
> > \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> >
> > \stoptext
> > % end fabrice-inmargin.tex
> >
> > > On 16 Jul 2016, at 00:44, Fabrice Couvreur <
> fabrice1.couvr...@gmail.com> wrote:
> > >
> > > Hi Kavian (your first name ?)
> > > Thank you for your suggestion but it is still a little problem: why
> the baseline of the framed is the thirdA and not the first ?
> > > thank you,
> > > Fabrice
> > >
> > > \useMPlibrary [dum]
> > >
> > > \setuplayout
> > >   [width=13cm,
> > >rightmargin=5cm]
> > >
> > >
> > > \setupbodyfont[pagella,11pt]
> > >
> > > \definefloat
> > >[recipe]
> > >[figure]
> > >
> > > \setupfloat
> > >[recipe]
> > >[default={rightmargin,none}]
> > >
> > > \setupframed
> > >   [frame=on,
> > >width=\rightmarginwidth,
> > >align=justify,
> > >offset=2pt,
> > >location=low,
> > >rulethickness=1pt,
> > >framecolor=darkred,
> > >corner=00]
> > >
> > > \starttext
> > >
> > > \showframe
> > >
> > >
> > > A\\A\\A
> > > \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> > >
> > >
> > >
> > > \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
> >
> ___
> >
> >
> ___
> > 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
>
> ___
>
___
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] (no subject)

2016-07-17 Thread Otared Kavian
Hi Fabrice,

If you want the framed box to be placed on the same baseline as the letter A, 
in the example, then you have to tell ConTeXt to place a margin material right 
after A, as in


A\\ \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
B \\ C

and you can play with setupframed by choosing an option « low » or » high » 
according to your desire.

Best regards: Otared


> On 16 Jul 2016, at 23:23, Fabrice Couvreur  
> wrote:
> 
> Hi Kavian,
> Okay, but I do not understand why the top of the framed can not be on the 
> baseline of the letter A.
> Fabrice
> 
> 2016-07-16 11:28 GMT+02:00 Otared Kavian :
> Hi Fabrice,
> 
> Indeed you can place your float a little bit higher in th emargin, as in the 
> example below, by using the keyword « high ».
> 
> Best regrads: Otared K.
> % begin fabrice-inmargin.tex
> \setuplayout
>   [width=13cm,
>rightmargin=5cm]
> 
> \setupbodyfont[pagella,11pt]
> 
> \definefloat
>[recipe]
>[figure]
> 
> \setupfloat
>[recipe]
>[default={rightmargin,none,high}]
> 
> \setupframed
>   [frame=on,
>width=\rightmarginwidth,
>align=justify,
>offset=2pt,
>location=low,
>rulethickness=1pt,
>framecolor=darkred,
>corner=00]
> 
> \showgrid
> \showframe
> 
> \starttext
> 
> A\\ B \\ C
> \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> 
> \input ward.tex
> 
> \setupfloat
>[recipe]
>[default={rightmargin,none,low}]
> 
> A\\ B \\ C
> \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> 
> \stoptext
> % end fabrice-inmargin.tex
> 
> > On 16 Jul 2016, at 00:44, Fabrice Couvreur  
> > wrote:
> >
> > Hi Kavian (your first name ?)
> > Thank you for your suggestion but it is still a little problem: why the 
> > baseline of the framed is the thirdA and not the first ?
> > thank you,
> > Fabrice
> >
> > \useMPlibrary [dum]
> >
> > \setuplayout
> >   [width=13cm,
> >rightmargin=5cm]
> >
> >
> > \setupbodyfont[pagella,11pt]
> >
> > \definefloat
> >[recipe]
> >[figure]
> >
> > \setupfloat
> >[recipe]
> >[default={rightmargin,none}]
> >
> > \setupframed
> >   [frame=on,
> >width=\rightmarginwidth,
> >align=justify,
> >offset=2pt,
> >location=low,
> >rulethickness=1pt,
> >framecolor=darkred,
> >corner=00]
> >
> > \starttext
> >
> > \showframe
> >
> >
> > A\\A\\A
> > \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> >
> >
> >
> > \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
> ___
> 
> ___
> 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
___

Re: [NTG-context] (no subject)

2016-07-16 Thread Fabrice Couvreur
Hi Kavian,
Okay, but I do not understand why the top of the framed can not be on the
baseline of the letter A.
Fabrice

2016-07-16 11:28 GMT+02:00 Otared Kavian :

> Hi Fabrice,
>
> Indeed you can place your float a little bit higher in th emargin, as in
> the example below, by using the keyword « high ».
>
> Best regrads: Otared K.
> % begin fabrice-inmargin.tex
> \setuplayout
>   [width=13cm,
>rightmargin=5cm]
>
> \setupbodyfont[pagella,11pt]
>
> \definefloat
>[recipe]
>[figure]
>
> \setupfloat
>[recipe]
>[default={rightmargin,none,high}]
>
> \setupframed
>   [frame=on,
>width=\rightmarginwidth,
>align=justify,
>offset=2pt,
>location=low,
>rulethickness=1pt,
>framecolor=darkred,
>corner=00]
>
> \showgrid
> \showframe
>
> \starttext
>
> A\\ B \\ C
> \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
>
> \input ward.tex
>
> \setupfloat
>[recipe]
>[default={rightmargin,none,low}]
>
> A\\ B \\ C
> \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
>
> \stoptext
> % end fabrice-inmargin.tex
>
> > On 16 Jul 2016, at 00:44, Fabrice Couvreur 
> wrote:
> >
> > Hi Kavian (your first name ?)
> > Thank you for your suggestion but it is still a little problem: why the
> baseline of the framed is the thirdA and not the first ?
> > thank you,
> > Fabrice
> >
> > \useMPlibrary [dum]
> >
> > \setuplayout
> >   [width=13cm,
> >rightmargin=5cm]
> >
> >
> > \setupbodyfont[pagella,11pt]
> >
> > \definefloat
> >[recipe]
> >[figure]
> >
> > \setupfloat
> >[recipe]
> >[default={rightmargin,none}]
> >
> > \setupframed
> >   [frame=on,
> >width=\rightmarginwidth,
> >align=justify,
> >offset=2pt,
> >location=low,
> >rulethickness=1pt,
> >framecolor=darkred,
> >corner=00]
> >
> > \starttext
> >
> > \showframe
> >
> >
> > A\\A\\A
> > \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> >
> >
> >
> > \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
>
> ___
>
___
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] (no subject)

2016-07-16 Thread Otared Kavian
Hi Fabrice,

Indeed you can place your float a little bit higher in th emargin, as in the 
example below, by using the keyword « high ».

Best regrads: Otared K.
% begin fabrice-inmargin.tex
\setuplayout
  [width=13cm,
   rightmargin=5cm]

\setupbodyfont[pagella,11pt]

\definefloat
   [recipe]
   [figure]
 
\setupfloat
   [recipe]
   [default={rightmargin,none,high}]

\setupframed
  [frame=on,
   width=\rightmarginwidth,
   align=justify,
   offset=2pt,
   location=low,
   rulethickness=1pt,
   framecolor=darkred,
   corner=00]

\showgrid
\showframe

\starttext

A\\ B \\ C
\placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}

\input ward.tex

\setupfloat
   [recipe]
   [default={rightmargin,none,low}]

A\\ B \\ C
\placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}

\stoptext
% end fabrice-inmargin.tex

> On 16 Jul 2016, at 00:44, Fabrice Couvreur  
> wrote:
> 
> Hi Kavian (your first name ?)
> Thank you for your suggestion but it is still a little problem: why the 
> baseline of the framed is the thirdA and not the first ?
> thank you,
> Fabrice
> 
> \useMPlibrary [dum]
> 
> \setuplayout
>   [width=13cm,
>rightmargin=5cm]
>   
> 
> \setupbodyfont[pagella,11pt]
> 
> \definefloat
>[recipe]
>[figure]
>  
> \setupfloat
>[recipe]
>[default={rightmargin,none}]
> 
> \setupframed
>   [frame=on,
>width=\rightmarginwidth,
>align=justify,
>offset=2pt,
>location=low,
>rulethickness=1pt,
>framecolor=darkred,
>corner=00]
> 
> \starttext
> 
> \showframe
> 
> 
> A\\A\\A
> \placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}
> 
> 
> 
> \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] (no subject)

2016-07-15 Thread Fabrice Couvreur
Hi Kavian (your first name ?)
Thank you for your suggestion but it is still a little problem: why the
baseline of the framed is the third A and not the first ?
thank you,
Fabrice

\useMPlibrary [dum]

\setuplayout
  [width=13cm,
   rightmargin=5cm]


\setupbodyfont[pagella,11pt]

\definefloat
   [recipe]
   [figure]

\setupfloat
   [recipe]
   [default={rightmargin,none}]

\setupframed
  [frame=on,
   width=\rightmarginwidth,
   align=justify,
   offset=2pt,
   location=low,
   rulethickness=1pt,
   framecolor=darkred,
   corner=00]

\starttext

\showframe


A\\A\\A
\placerecipe{}{\framed{La vie n'est pas un long fleu||ve tranquille !}}



\stoptext



2016-07-15 18:51 GMT+02:00 Otared Kavian :

> Hi Fabrice,
>
> You can give an option to \framed, as in:
>
> \placerecipe{}{\framed[align=justify,offset=2pt]{La vie n'est pas un long
> fleuve tranquille !}}
>
> You may also (in the above example) replace « fleuve » by « fleu||ve » in
> order to get a hyphenation.
>
> Best regards: OK
>
> > On 15 Jul 2016, at 16:19, Fabrice Couvreur 
> wrote:
> >
> > Hi Wolfgang,
> > Thank you. Now I want the figures or boxes with text are automatically
> placed in the right margin. Is this the best way ?
> > How have justified text in the boxes ?
> > Fabrice
> >
> > 
> > \useMPlibrary [dum]
> >
> > \setuplayout
> >   [width=13cm,
> >rightmargin=5cm]
> >
> > \setupbodyfont[pagella,11pt]
> >
> > \definefloat
> >[recipe]
> >[figure]
> >
> > \setupfloat
> >[recipe]
> >[default={rightmargin,none}]
> >
> > \setupframed
> >   [frame=on,
> >width=\rightmarginwidth,
> >align=flushleft,
> >location=low,
> >rulethickness=1pt,
> >framecolor=blue,
> >corner=00]
> >
> > \starttext
> >
> > \showframe
> >
> > \placerecipe{}{\externalfigure [dummy] [width=\rightmarginwidth]}
> >
> > \placerecipe{}{\framed{La vie n'est pas un long fleuve tranquille !}}
> >
> > \stoptext
> > ###
> >
> >
> > 2016-07-15 13:26 GMT+02:00 Wolfgang Schuster <
> schuster.wolfg...@gmail.com>:
> >> Fabrice Couvreur 15. Juli 2016 um 13:17
> >>
> >> Hello everyone,
> >> The document
> https://drive.google.com/file/d/0B-mkD83s36jbREZmbGdPaGVHUDg/view?usp=sharing
> shows what I would do at the place reserved for the text and that reserved
> for comments, ratings ...
> >> Must use two columns or predefine the dimensions of the paper ?
> > Change the layout of the page, the blue boxes are margin texts.
> >
> > \setuplayout
> >   [width=13cm,
> >rightmargin=5cm]
> >
> > \showframe
> >
> > \starttext
> > \page[dummy]
> > \stoptext
> >
> > 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
> >
> ___
> >
> >
> ___
> > 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
>
> ___
>
___
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] (no subject)

2016-07-15 Thread Otared Kavian
Hi Fabrice,

You can give an option to \framed, as in:

\placerecipe{}{\framed[align=justify,offset=2pt]{La vie n'est pas un long 
fleuve tranquille !}}

You may also (in the above example) replace « fleuve » by « fleu||ve » in order 
to get a hyphenation.

Best regards: OK

> On 15 Jul 2016, at 16:19, Fabrice Couvreur  
> wrote:
> 
> Hi Wolfgang,
> Thank you. Now I want the figures or boxes with text are automatically placed 
> in the right margin. Is this the best way ?
> How have justified text in the boxes ?
> Fabrice
> 
> 
> \useMPlibrary [dum]
> 
> \setuplayout
>   [width=13cm,
>rightmargin=5cm]
> 
> \setupbodyfont[pagella,11pt]
> 
> \definefloat
>[recipe]
>[figure]
>  
> \setupfloat
>[recipe]
>[default={rightmargin,none}]
> 
> \setupframed
>   [frame=on,
>width=\rightmarginwidth,
>align=flushleft,
>location=low,
>rulethickness=1pt,
>framecolor=blue,
>corner=00]
> 
> \starttext
> 
> \showframe
> 
> \placerecipe{}{\externalfigure [dummy] [width=\rightmarginwidth]}
> 
> \placerecipe{}{\framed{La vie n'est pas un long fleuve tranquille !}}
> 
> \stoptext
> ###
> 
> 
> 2016-07-15 13:26 GMT+02:00 Wolfgang Schuster :
>> Fabrice Couvreur 15. Juli 2016 um 13:17
>>  
>> Hello everyone,
>> The document 
>> https://drive.google.com/file/d/0B-mkD83s36jbREZmbGdPaGVHUDg/view?usp=sharing
>>  shows what I would do at the place reserved for the text and that reserved 
>> for comments, ratings ...
>> Must use two columns or predefine the dimensions of the paper ? 
> Change the layout of the page, the blue boxes are margin texts.
> 
> \setuplayout
>   [width=13cm,
>rightmargin=5cm]
> 
> \showframe
> 
> \starttext
> \page[dummy]
> \stoptext
> 
> 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
> ___
> 
> ___
> 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
___

Re: [NTG-context] (no subject)

2016-07-15 Thread Fabrice Couvreur
Hi Wolfgang,
Thank you. Now I want the figures or boxes with text are automatically
placed in the right margin. Is this the best way ?
How have justified text in the boxes ?
Fabrice


\useMPlibrary [dum]

\setuplayout
  [width=13cm,
   rightmargin=5cm]

\setupbodyfont[pagella,11pt]

\definefloat
   [recipe]
   [figure]

\setupfloat
   [recipe]
   [default={rightmargin,none}]

\setupframed
  [frame=on,
   width=\rightmarginwidth,
   align=flushleft,
   location=low,
   rulethickness=1pt,
   framecolor=blue,
   corner=00]

\starttext

\showframe

\placerecipe{}{\externalfigure [dummy] [width=\rightmarginwidth]}

\placerecipe{}{\framed{La vie n'est pas un long fleuve tranquille !}}

\stoptext
###


2016-07-15 13:26 GMT+02:00 Wolfgang Schuster :

> Fabrice Couvreur 
> 15. Juli 2016 um 13:17
> Hello everyone,
> The document
> https://drive.google.com/file/d/0B-mkD83s36jbREZmbGdPaGVHUDg/view?usp=sharing 
> shows
> what I would do at the place reserved for the text and that reserved for
> comments, ratings ...
> Must use two columns or predefine the dimensions of the paper ?
>
> Change the layout of the page, the blue boxes are margin texts.
>
> \setuplayout
>   [width=13cm,
>rightmargin=5cm]
>
> \showframe
>
> \starttext
> \page[dummy]
> \stoptext
>
> 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
>
> ___
>
___
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] (no subject)

2016-07-15 Thread Wolfgang Schuster

Fabrice Couvreur 
15. Juli 2016 um 13:17
Hello everyone,
The document 
https://drive.google.com/file/d/0B-mkD83s36jbREZmbGdPaGVHUDg/view?usp=sharing 
shows what I would do at the place reserved for the text and that 
reserved for comments, ratings ...

Must use two columns or predefine the dimensions of the paper ?

Change the layout of the page, the blue boxes are margin texts.

\setuplayout
  [width=13cm,
   rightmargin=5cm]

\showframe

\starttext
\page[dummy]
\stoptext

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
___

Re: [NTG-context] (no subject)

2013-03-20 Thread Sietse Brouwer
> This is more of a follow-up question than an answer: wouldn't
> \blank[nowhite] be better?

Quite possibly. When I read "I want to be able to adjust the vertical
white space" my mind went towards adding whitespace instead of
removing it, but that was just an assumption. I admit that I didn't
look up the original thread. :-)

Cheers,
Sietse

On 20 March 2013 13:09, Marcin Borkowski  wrote:
> Dnia 2013-03-20, o godz. 12:35:11
> Sietse Brouwer  napisał(a):
>
>> non-null  wrote:
>> > I want to be able to adjust the vertical white space between the
>> > list introduction text and the list of items.  How can this be
>> > accomplished?
>>
>> Probably \setupitemgroup[itemize][before={\blank[0em]}] will do what
>> you want. For a complete list of parameters:
>> http://wiki.contextgarden.net/Command/setupitemgroup
>
> This is more of a follow-up question than an answer: wouldn't
> \blank[nowhite] be better?
>
> Best,
>
> --
> Marcin Borkowski
> http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
> Adam Mickiewicz University
> ___
> 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
___

Re: [NTG-context] (no subject)

2013-03-20 Thread Marcin Borkowski
Dnia 2013-03-20, o godz. 12:35:11
Sietse Brouwer  napisał(a):

> non-null  wrote:
> > I want to be able to adjust the vertical white space between the
> > list introduction text and the list of items.  How can this be
> > accomplished?
> 
> Probably \setupitemgroup[itemize][before={\blank[0em]}] will do what
> you want. For a complete list of parameters:
> http://wiki.contextgarden.net/Command/setupitemgroup

This is more of a follow-up question than an answer: wouldn't
\blank[nowhite] be better?

Best,

-- 
Marcin Borkowski
http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
Adam Mickiewicz University
___
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] (no subject)

2013-03-20 Thread Sietse Brouwer
non-null  wrote:
> I want to be able to adjust the vertical white space between the list
> introduction text and the list of items.  How can this be
> accomplished?

Probably \setupitemgroup[itemize][before={\blank[0em]}] will do what
you want. For a complete list of parameters:
http://wiki.contextgarden.net/Command/setupitemgroup

\starttext

\setupitemgroup[itemize][before={\blank[0em]}]

\starttext
\startitemize[packed]
asdf asdf asdf asdf
\item asdf
\item asdf
\item asdf
\stopitemize
\stoptext

\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] (no subject)

2013-03-20 Thread Wolfgang Schuster

Am 20.03.2013 um 03:22 schrieb non-null :

> Here is a simple example:
> 
> \starttext
> \startitemize[1,packed]  Introduction text to the list below.
> \item some item text1
> \item some item text2
> \stopitemize
> 
> I want to be able to adjust the vertical white space between the list
> introduction text and the list of items.  How can this be
> accomplished?

\starttext
Introduction text to the list below.
\startitemize[1,packed,joinedup]
\item some item text1
\item some item text2
\stopitemize

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
___


Re: [NTG-context] (no subject)

2013-01-23 Thread Taco hoekwater


Op 24 jan. 2013 om 01:59 heeft Alfredo Catalina 



User kicked off the list.

Best wishes,
Taco
___
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] (no subject)

2012-12-03 Thread Taco Hoekwater

On 12/03/2012 10:34 AM, Peter Fiets wrote:

http://laptop-gadgets.com/wp-content/themes/twentyeleven/google.html


That subscriber is going away now ...
___
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] (no subject)

2011-09-10 Thread Honza Hejzl
Great, thanks, we are close to success.

I can see the pdf file but it is broken and the console seems like it wants
some next interaction:

/context/base/lpdf-pdx.xml'
pages   > flushing realpage 1, userpage 1, subpage 1
pages   > flushing realpage 2, userpage 2
pages   > flushing realpage 3, userpage 3
pages   > flushing realpage 4, userpage 4
pages   > flushing realpage 5, userpage 5
))
*

Any suggestions?

Thanks. Honza
___
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] (no subject)

2008-04-24 Thread richard . stephens
>> I have consulted the manuals and even the source (core-con.tex) but I 
>> cannot find a way of getting a three-letter month using the \date 
command.
>> For example, I would like to display today's date as 23-Apr-08.  This 
>> gives a short display suitable for use in a margin, but avoids the 
>> confusion of American (04-23-08) vs English (23-04-08) ordering when 
using 
>> numbers.
>> Can anyone help?
>
>These are available (sort of)
>
>   \currentdate[day,--,{\monthshort\normalmonth},--,year] % lowercase
>
>or
>
>   \currentdate[day,--,{\MONTHSHORT\normalmonth},--,year] % uppercase
>

Thanks, Taco, that does the job for now. 
Now all we need is something called \Monthshort which puts the 
first letter in uppercase (Jan, Feb etc)!!!

Thanks,

Richard
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2008-03-26 Thread Horacio Suarez

thankyou very much Wolfgang y Peter.


Horacio Suarez
Editorial Antropofagia
www.eantropofagia.com.ar

> Date: Wed, 26 Mar 2008 08:14:10 +0100
> From: [EMAIL PROTECTED]
> To: ntg-context@ntg.nl
> Subject: Re: [NTG-context] (no subject)
> 
> On Tue, Mar 25, 2008 at 7:27 PM, Horacio Suarez
> <[EMAIL PROTECTED]> wrote:
> > Hello all,
> >
> > I have a stupid cuestion:
> >
> > I´m making a long 12 pages table. I´m using \setupfootertexts for the
> > pagenumber. I don´t want page numbers in the header at all.
> >
> > header=hight or header=empty in the \title setup is not enough, I still have
> > a page number centered in the header.
> >
> > How can I supress the page number or the header totally in the whole
> > document?
> 
> \setuppagenumbering[location=]
> 
> \starttext
> \dorecurse{10}{\input knuth\par}
> \stoptext
> 
> 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  : https://foundry.supelec.fr/projects/contextrev/
> wiki : http://contextgarden.net
> ___

_
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2008-03-26 Thread Wolfgang Schuster
On Tue, Mar 25, 2008 at 7:27 PM, Horacio Suarez
<[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I have a stupid cuestion:
>
> I´m making a long 12 pages table. I´m using \setupfootertexts for the
> pagenumber. I don´t want page numbers in the header at all.
>
> header=hight or header=empty in the \title setup is not enough, I still have
> a page number centered in the header.
>
> How can I supress the page number or the header totally in the whole
> document?

\setuppagenumbering[location=]

\starttext
\dorecurse{10}{\input knuth\par}
\stoptext

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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2008-03-25 Thread Peter Rolf
Hi Horacio,

Horacio Suarez schrieb:
> Hello all,
> 
> I have a stupid cuestion:
> 
> I´m making a long 12 pages table. I´m using \setupfootertexts for the 
> pagenumber. I don´t want page numbers in the header at all.
> 
> header=hight or header=empty in the \title setup is not enough, I still 
> have a page number centered in the header.
> 
> How can I supress the page number or the header totally in the whole 
> document?
>
you can try

\setupheadertexts[]

I guess you have already looked at
http://wiki.contextgarden.net/Headers_and_Footers

[and please use a subject next time]

Best wishes, Peter

> Thankyou in advance.
> 
> 
> 
> Horacio Suarez
> Editorial Antropofagia
> www.eantropofagia.com.ar
> 
> Discover the new Windows Vista Learn more! 
> 
> 
> 
> 
> 
> ___
> 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  : https://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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] (no subject)

2007-01-29 Thread Mojca Miklavec
On 1/28/07, 박내엽(NY Park) wrote:
>
> HI Update 2007.1.24 in OSX
> but when i  "texexec -pdf test.tex"
> next error massage why???
>
> (/usr/local/teTeX/share/texmf.local/tex/context/base/type-akb.tex))
> bodyfont: 12pt rm is loaded
> kpathsea: Running mktextfm lmmi7

/etc./

I can't assure you that everything will be fixed, but you really need
to upgrade to TeXLive-based instead of tetex-based installation. See
http://wiki.contextgarden.net/Mac_Installation

After you upgrade, please check if there's a file
/usr/local/gwTeX/texmf.texlive/map/dvipdfm/context/lm-math.map
present in the distribution. If not, installing a new version of LM
fonts might help.

Please report if the installation will be successfull or not. (You
need to download more than 200 MB.)

Mojca
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] (no subject)

2004-02-08 Thread Hans Hagen
At 07:15 05/02/2004, you wrote:
Hallo,

it seems to me that text surrounding is ignored for floats inside columns,
see the code below. Am I right?
yes; see columns.pdf for the many figure options in column sets

Hans  

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


Re: [NTG-context] (no subject)

2004-02-03 Thread Vit Zyka
> Because buffers are verbatim-like environments.
>
> --
> Giuseppe "Oblomov" Bilotta

Hi,

I expected that buffers are verbatimly stored to the file immediately in the
time of processing \startbuffer...\stopbuffer thand the file is read
processing \getbuffer.

But it seems to me that the source file is parsed by texexec to find
\startbuffer...\stopbuffer before TeX processing. Is it orrect? If so, how
the included files are parsed (mainly if the macro expansion is needed for
detection of inclusion)?

Vit Zyka

> > this buffer storage works perfectly:
> > 
> > \starttext
> >  \startbuffer[TMP]
> >  Bla
> >  \stopbuffer
> >  \getbuffer[TMP]
> > \stoptext
> > 
>
> > but why not this one?
>
> > 
> > \starttext
> > \def\tmp{%
> >   \startbuffer[TMP]
> >   Bla
> >   \stopbuffer
> > }
> >   \tmp
> >   \getbuffer[TMP]
> > \stoptext
> > 


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


Re: [NTG-context] (no subject)

2004-02-02 Thread Giuseppe Bilotta
Sunday, February 1, 2004 Vit Zyka wrote:

> Hallo ConTeXt debater,

> this buffer storage works perfectly:
> 
> \starttext
>  \startbuffer[TMP]
>  Bla
>  \stopbuffer
>  \getbuffer[TMP]
> \stoptext
> 

> but why not this one?

> 
> \starttext
> \def\tmp{%
>   \startbuffer[TMP]
>   Bla
>   \stopbuffer
> }
>   \tmp
>   \getbuffer[TMP]
> \stoptext
> 

Because buffers are verbatim-like environments.

-- 
Giuseppe "Oblomov" Bilotta

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


Re: [NTG-context] (no subject)

2004-01-24 Thread Nigel King
wei jm,

Why do you want it in a different format? What application are you 
using for your report?

Nigel

On 21 Jan 2004, at 08:54, hl590we wrote:

Hello,everybody,

 I have a problem while using context to create some flowcharts. The
beginning of
my tex source file looks like:
 \setupoutput[pdftex]
 \usemodule[chart]
 Naturally I got a flowchart in pdf version. But a pdf version 
flowchart is

not suitable for inserting into a paper or a report. Then I try to use 
software
to convert it from pdf format into some other imgage formats. But none 
of them
was satisfied.
I wonder how can I direct get a flowchart in some imgage formats (e.g. 
in png,
jpg format) from the source tex file. Are there some
tricks in the settings of the tex source file?

   Thanks in advance!

   Best regards   			

[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL PROTECTED]@wei jm
[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL 
PROTECTED]
[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL PROTECTED]@[EMAIL PROTECTED]@2004-01-20
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context
Nigel King - CTO Orthogon Systems

True non-Line-of-Sight

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


Re: [NTG-context] (no subject)

2003-09-22 Thread Jens-Uwe Morawski
On Sun, 21 Sep 2003 21:24:04 +0200 (MEST)
Severin Obertuefer <[EMAIL PROTECTED]> wrote:

> how can I cut the the part of the path c between A and B, so that the result
> is like a cheese :)

path cheese ;
cheese := c rotated angle B ;
cheese := cheese cutafter (origin--A) ;


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