ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* (no subject)
@ 2021-09-08 12:26 Marcus Vinicius Mesquita via ntg-context
  0 siblings, 0 replies; 79+ messages in thread
From: Marcus Vinicius Mesquita via ntg-context @ 2021-09-08 12:26 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Marcus Vinicius Mesquita


[-- Attachment #1.1: Type: text/plain, Size: 567 bytes --]

Dear list,

Let's say we have two types of synonyms:

\definesynonyms[Abrev][Abrevs][\AbrevExp][\AbrevComp]
\definesynonyms[Rubrica][Rubricas][\RubricaExp][\RubricaComp]

Is it possible to combine them in a unique list of merged Abrevs and
Rubricas?

TIA

Marcus Vinicius

-- 
Todas as coisas fatigam o corpo, salvo a música, que não fatiga nem o corpo
nem seus membros, por ser descanso da alma, primavera do coração, distração
do aflito, entretenimento do solitário, e viático do viajante.

Kunnâsh al-Hâ'ik (Cancioneiro de al-Hâ'ik)

[-- Attachment #1.2: Type: text/html, Size: 736 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2021-07-17  6:38 T. Kurt Bond
  2021-07-18 16:49 ` Pablo Rodriguez
@ 2021-07-18 17:08 ` Wolfgang Schuster
  1 sibling, 0 replies; 79+ messages in thread
From: Wolfgang Schuster @ 2021-07-18 17:08 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2021-07-17  6:38 T. Kurt Bond
@ 2021-07-18 16:49 ` Pablo Rodriguez
  2021-07-18 17:08 ` Wolfgang Schuster
  1 sibling, 0 replies; 79+ messages in thread
From: Pablo Rodriguez @ 2021-07-18 16:49 UTC (permalink / raw)
  To: ntg-context

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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2021-07-17  6:38 T. Kurt Bond
  2021-07-18 16:49 ` Pablo Rodriguez
  2021-07-18 17:08 ` Wolfgang Schuster
  0 siblings, 2 replies; 79+ messages in thread
From: T. Kurt Bond @ 2021-07-17  6:38 UTC (permalink / raw)
  To: context mailing list


[-- Attachment #1.1.1: Type: text/plain, Size: 1299 bytes --]

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.
Here is what I get:
[image: image.png]
Why does the last table have "Table 1", when there is a
\setupfloat[table][default=nonumber]?
-- 
T. Kurt Bond, tkurtbond@gmail.com, https://tkurtbond.github.io

[-- Attachment #1.1.2: Type: text/html, Size: 2022 bytes --]

[-- Attachment #1.2: image.png --]
[-- Type: image/png, Size: 182069 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2021-03-20 22:43 Adam Reviczky
  0 siblings, 0 replies; 79+ messages in thread
From: Adam Reviczky @ 2021-03-20 22:43 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 888 bytes --]

Hi,

Is there a way to have formula numbers showing all prefix segments?
When I use prefixsegments, I get the desired numbering in the placelist but
not in the formula number itself.

For example:
\starttext
\setupcaption[figure][way=bytext,prefixsegments=1:*]
\setupformulas[way=bytext,prefixsegments=1:*]
\startsection[title=Section]
\startsubsection[title=SubSection]
\startplacefigure[list=cow] \externalfigure[cow] \stopplacefigure
\startplaceformula[reference=eq1] \startformula c^2 = a^2 + b^2
\stopformula \stopplaceformula
\stopsubsection
\stopsection
\placelistoffigures[criterium=all]
\placelist[formula][criterium=all]
\stoptext

The figure has number 1.1.1 and is in the list as 1.1.1, the formula has
number 1.1 but is listed as 1.1.1.
I would like to have the formula numbered 1.1.1 as well (as referenced in
the placelist), so with section and subsection numbering.

Adam

[-- Attachment #1.2: Type: text/html, Size: 1107 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2021-03-13 17:08 Jeroen
@ 2021-03-13 17:16 ` Jano Kula
  0 siblings, 0 replies; 79+ messages in thread
From: Jano Kula @ 2021-03-13 17:16 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 313 bytes --]

Hello!

On Sat, Mar 13, 2021 at 6:09 PM Jeroen <contextntg@gmail.com> 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.

[-- Attachment #1.2: Type: text/html, Size: 744 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2021-03-13 17:08 Jeroen
  2021-03-13 17:16 ` Jano Kula
  0 siblings, 1 reply; 79+ messages in thread
From: Jeroen @ 2021-03-13 17:08 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 2943 bytes --]

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?





\setupcolors
  [state=start]

\usecolors
  [xwi]

\usetypescriptfile
  [euler]

\definetypeface
  [mainface][rm][serif][pagella][default]

\definetypeface
  [mainface][tt][mono][dejavu][default]

\definetypeface
  [mainface][mm][math][pagellaovereuler][default]

\setupbodyfont
  [mainface,11.5pt]

\setuppapersize
  [A4,
   portrait]

\setuplayout
  [backspace=19mm,
   width=176mm,
   topspace=7mm,
   header=10mm,
   headerdistance=3mm,
   height=middle,
   footerdistance=5mm,
   footer=9mm,
   bottomspace=11mm]

\setuphead
  [chapter]
  [style={\bfb},
   before={\vskip 0mm},
   after={\vskip-\parskip}]

\setuphead
[section]
[style=bold,
   before={\vskip 6mm},
   after={\vskip 2mm}]

\setuppagenumbering
  [alternative=doublesided]

\setupheadertexts
  []

\setupfooter
  [style=\it]

\setupfootertexts
  [{Footer Title} \hfill \pagenumber]

\definemakeup
  [titlepage]
  [align=left]

\definemakeup
  [copyrightpage]

\setupmakeup
  [copyrightpage]
  [align={right,bottom},
   top=\vfill,
   pagestate=stop,
   style=smallbodyfont]

\definealternativestyle
  [authorstyle]
  [\rm\tfb]
  []

\definealternativestyle
  [titlestyle]
  [{\rm\bfd\color[red]}]
  []

\definealternativestyle
  [subtitlestyle]
  [\rm\tfb]
  []

\definealternativestyle
  [publisherstyle]
  [\rm\bfb]
  []


\starttext

\startmakeup[titlepage]
\authorstyle{The Author}
\blank[13*big]
\titlestyle{Title 1}
\blank[5*small]
\titlestyle{Title 2}
\blank[2*big]
\subtitlestyle{Subtitle}
\blank[47*big]
\publisherstyle{Publisher}
\stopmakeup

\startmakeup[copyrightpage]
Title \crlf
Subtitle
\blank
Geprint in Country. \crlf
Document Reference ABC-ABC-001. \crlf
Eerste draft versie, gepubliceerd op \date. \crlf
Dit document is getypset met \CONTEXT\ LMTX op Microsoft Windows 10.
\blank
\startalignment[flushmiddle]
Copyright \copyright\ 2021, Publisher. Alle rechten voorbehouden. \crlf
Niets uit deze uitgave mag worden verveelvoudigd, opgeslagen in een
geautomatiseerd gegevensbestand en/of openbaar gemaakt in enige vorm of op
enige wijze, hetzij elektronisch, mechanisch, door fotokopieën, opnamen of
op enige andere manier zonder voorafgaande schriftelijk bevestigde
toestemming van Publisher.
\stopalignment
\stopmakeup

\startcolumns[2]

\startchapter[title={Bryson and Tufte}]

\dorecurse{5}{
  \startsection[title={Bryson}] \input{bryson} \stopsection
  \startsection[title={Tufte}] \input{tufte} \stopsection}

\stopchapter

\startchapter[title={Zapf and Ward}]

\dorecurse{5}{
  \startsection[title={Zapf}] \input{zapf} \stopsection
  \startsection[title={Ward}] \input{ward} \stopsection}

\stopchapter

\stopcolumns

\stoptext

[-- Attachment #1.2: Type: text/html, Size: 3421 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
@ 2020-06-18  6:33 Malte Frank Gerdes
  0 siblings, 0 replies; 79+ messages in thread
From: Malte Frank Gerdes @ 2020-06-18  6:33 UTC (permalink / raw)
  To: ntg-context

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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2020-06-17 13:46 ` Taco Hoekwater
@ 2020-06-17 16:50   ` Hans Hagen
  0 siblings, 0 replies; 79+ messages in thread
From: Hans Hagen @ 2020-06-17 16:50 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2020-06-17 11:31 Malte Frank Gerdes
@ 2020-06-17 13:46 ` Taco Hoekwater
  2020-06-17 16:50   ` Hans Hagen
  0 siblings, 1 reply; 79+ messages in thread
From: Taco Hoekwater @ 2020-06-17 13:46 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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 <malte.f.gerdes@gmail.com> 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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2020-06-17 11:31 Malte Frank Gerdes
  2020-06-17 13:46 ` Taco Hoekwater
  0 siblings, 1 reply; 79+ messages in thread
From: Malte Frank Gerdes @ 2020-06-17 11:31 UTC (permalink / raw)
  To: ntg-context

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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2020-04-19  4:53 Jairo A. del Rio
  0 siblings, 0 replies; 79+ messages in thread
From: Jairo A. del Rio @ 2020-04-19  4:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 535 bytes --]

I've seen the following solution in Stack Exchange to add referenceable
enumeration labels to a framed enumeration environment:

https://tex.stackexchange.com/questions/438588/context-and-metafun-framed-enumeration-with-counter-as-part-of-overlay

It uses \wrappedcurrentconstruction. However, it only prints the counter
label and the counter name. What if I need the text enclosed by braces in
the frame header too? E. g. \starttheorem[thm1]{Residue theorem} so the
framed title includes "Residue theorem" also. Thank you in advance.

[-- Attachment #1.2: Type: text/html, Size: 766 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2019-07-23 14:16 Denis Maier
  0 siblings, 0 replies; 79+ messages in thread
From: Denis Maier @ 2019-07-23 14:16 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1848 bytes --]

Hi,
I am typesetting a newsletter using newcolumnsets, and I am struggling with
placing my graphics. Why isn't the graphic on page 2 at the bottom (code
below)?
Best,
Denis

```
\usemodule[newcolumnsets,simulate]

\useMPlibrary[dum]

\setupbodyfont
[palatino]

\setuphead[section][style=\bfa\ss]

\setuplayout
[grid=yes]

\setuplayout
[backspace=20mm,
cutspace=15mm,
width=middle,
height=middle]

\setupsystem
[random=1234]

\setuppagenumbering [
alternative=,
location=,
]

\setupfootertexts
[Laubblatt 2019/1] [{\externalfigure[cow][height=15mm]}]

\setupfooter
[style=\ss]

\setuptolerance
[verytolerant,stretch]

\definecolor[color-1][.5(red,green)]
\definecolor[color-2][.5(green,blue)]
\definecolor[color-3][.5(blue,red)]
\definecolor[color-4][.5(white,black)]
\definecolor[color-5][.5(white,color-4)]

\startuniqueMPgraphic{frame}
fill OverlayBox withcolor \MPcolor{color-1} ;
\stopuniqueMPgraphic

\startuniqueMPgraphic{contrast}
fill OverlayBox withcolor \MPcolor{color-2} ;
\stopuniqueMPgraphic

\defineoverlay[frame]   [\uniqueMPgraphic{frame}]
\defineoverlay[contrast][\uniqueMPgraphic{contrast}]

\definecolumnset[example][n=2]

%\setupcolumnsetstart[example][1][1][2]
%\setupcolumnsetstart[example][1][2][4]
%\setupcolumnsetlines[example][1][1][-5]
%\setupcolumnsetlines[example][1][2][-5]



\definecolumnsetspan[wide] [n=2,
background=contrast,
color=white,
]


\starttext

\startcolumnset[example]



\startcolumnsetspan[wide]
\subject{Einleitung}
{\tfx\setupinterlinespace\em
\dorecurse{1}{\fakewords{50}{100}\par}
}
\stopcolumnsetspan

\placefigure [btrl,none]
{}
{
\externalfigure[placeholder][width=\columnsetspanwidth{1}]
}

\dorecurse{5}{\fakewords{50}{100}\par}

\placefigure [btrl,none]
{}
{
\externalfigure[placeholder][width=\columnsetspanwidth{2}]
}

\dorecurse{5}{\fakewords{50}{100}\par}

\stopcolumnset
\stoptext
```

[-- Attachment #1.2: Type: text/html, Size: 2283 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2019-05-18  6:13 Dmitry Starostin
  0 siblings, 0 replies; 79+ messages in thread
From: Dmitry Starostin @ 2019-05-18  6:13 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 795 bytes --]

Thank you for the instructions on how to make one's own style.

I only need to change the formatting in the bibliography list, the
formatting of the notes in the text is entirely up to the requirement.

A strange effect (full MWE in attachment):

\btxdoifelse {address} {
   {\btxspace \emdash \btxspace \btxflush{address} \btxcomma}
   }

   \btxdoifelse {year} {
      {\btxspace \btxflush{year} \btxperiod}
      }

gives "year 2000", but throw out the "address" part, and the year goes
straight without the 'year' part.

   \btxdoifelse {year} {
      {\btxspace \btxflush{year} \btxperiod}
      }

if you add publisher between the address and the year, then it says
"publisher Brill"

\btxdoifelse {publisher} {
{\btxspace \btxflush{publisher} \btxcomma}
}

Where does it pull it up from?

[-- Attachment #1.2: Type: text/html, Size: 1122 bytes --]

[-- Attachment #2: Context_bib.tex --]
[-- Type: application/octet-stream, Size: 1416 bytes --]

\setuplanguage[ru]
\setupbodyfont[dejavu]

\mainlanguage[russian]

\startbuffer[bib]

@Book{Declercq:2000,
  author      = {Declercq, Georges},
  title       = {Anno Domini: The origins of the Christian era},
  address     = {Turnhout},
  publisher   = {Brill},
  year        = {2000},
  shorttitle = {Anno Domini},
  shorthand = {Declercq},
  language    = {english},
  hyphenation = {english},
  pagetotal   = {206},
}

\stopbuffer

\usebtxdataset[default][bib.buffer]
%\loadbtxdefinitions[aps]
\loadbtxdefinitionfile[apa]
\usebtxdefinitions[apa]
\setupbtx[dataset=default]
\definebtxrendering[default][apa][specification=apa,sorttype=authoryear,numbering=no]
\setupindenting[big,yes]
\loadbtxdefinitionfile[apa]

\setbreakpoints[compound]

\setupbtx[apa:cite:authoryear][left={[},right={]}]

\startsetups btx:apa:list:book
  \btxdoif {author} {
      {\btxflush{author}}
  \btxcomma
  }
   \btxdoifelse {title} {
      {\btxflush{title} \btxperiod}
   } {
       No Title
   }
   \btxdoifelse {address} {
   {\btxspace \emdash \btxspace \btxflush{address} \btxcomma}
   }

   \btxdoifelse {year} {
      {\btxspace \btxflush{year} \btxperiod}
      }

  \removeunwantedspaces
\stopsetups

\starttext

\startbodymatter

Test.\cite[Declercq:2000]

\stopbodymatter

\startbackmatter
\startchapter[title=Bibliography]
\placelistofpublications[criterium=all,sorttype=authoryear]
\stopchapter
\stopbackmatter

\stoptext

[-- Attachment #3: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2019-04-04 19:30 Dmitry Starostin
@ 2019-04-04 22:37 ` Hans Hagen
  0 siblings, 0 replies; 79+ messages in thread
From: Hans Hagen @ 2019-04-04 22:37 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Dmitry Starostin

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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2019-04-04 19:30 Dmitry Starostin
  2019-04-04 22:37 ` Hans Hagen
  0 siblings, 1 reply; 79+ messages in thread
From: Dmitry Starostin @ 2019-04-04 19:30 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 206 bytes --]

In terminal:

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

->

resolvers       | initialization | fatal error: kpse library is accessed
(key: default_texmfcnf)

All works from within TexShop.

[-- Attachment #1.2: Type: text/html, Size: 447 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2019-03-22 15:22 Dmitry Starostin
  0 siblings, 0 replies; 79+ messages in thread
From: Dmitry Starostin @ 2019-03-22 15:22 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 348 bytes --]

I started getting a bug, updated today and am still getting it. I hope
someone can at least make a note of it, if not provide a
suggestion/solution.

MWE included.

The bug is the 'incollection' and 'inbook' entries in the bibliography have
1. have page numbers in parentheses for apa and chicago 2. have no book
title.

It worked just a week ago.

[-- Attachment #1.2: Type: text/html, Size: 458 bytes --]

[-- Attachment #2: Test_Context_html.tex --]
[-- Type: application/octet-stream, Size: 2096 bytes --]

\setuplanguage[en]
%\setupbackend[export=yes]
\mainlanguage[english]

\startbuffer[bib]

@Book{Declercq:2000,
  author      = {Declercq, Georges},
  title       = {Anno Domini: The origins of the Christian era},
  address     = {Turnhout},
  publisher   = {Brill},
  year        = {2000},
  shorttitle = {Anno Domini},
  shorthand = {Declercq},
  language    = {english},
  hyphenation = {english},
  pagetotal   = {206},
}

@Book{Rupke:2011,
author = {Jörg Rupke},
title = {The Roman Calendar from Numa to Constantine: Time, History, and the Fasti},
address = {Chichester, West Sussex, U.K.},
publisher = {Wiley-Blackwell},
year = {2011},
shorttitle = {The Roman Calendar},
shorthand = {The Roman calendar},
language = {english},
hyphenation = {english},
}

@Incollection{Bloch:2012,
author = {Yigal Bloch},
title = {Middle Assyrian Lunar Calendar and Chronology},
book = {Living the Lunar Calendar},
editor = {J. Ben-Dov},
address = {Oxford},
publisher = {Oxbow},
year = {2012},
pages = {47-48},
language = {english},
hyphenation = {english},
} 

\stopbuffer

\usebtxdataset[default][bib.buffer]
\loadbtxdefinitionfile[apa]
\usebtxdefinitions[apa]
\setupbtx[dataset=default]
\setupbtx[default:cite][alternative=num]
\setupbtx [apa:cite][alternative=authoryear]
\definebtxrendering[default][apa][specification=chicago,sorttype=authoryear,numbering=no]
\setupindenting[big,yes]
\usetypescript[palatino]
\setupbodyfont[palatino,12pt]

\setupnarrower[left=1cm,right=3cm]

\definehighlight[mysmall][style=small]
\definehighlight[myitalic][style=italic]

\definestartstop
  [abstract][style=italic]
 [before={\midaligned{\bf Abstract}
            \startnarrower[left,right]\mysmall\myitalic},
   after={\stopnarrower
          \blank[big]}]

\startnarrower[2*middle]

\tolerance=1
\emergencystretch=\maxdimen
\hyphenpenalty=10000
\hbadness=10000

\starttext

\startabstract

\stopabstract

\startbodymatter

Test.\cite[righttext={p.~47}][Bloch:2012] 

\stopbodymatter

\startbackmatter
\startchapter[title=Bibliography]
\placelistofpublications[criterium=all]
\stopchapter
\stopbackmatter

\stoptext

[-- Attachment #3: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2019-03-22 11:34 dstarostin
@ 2019-03-22 15:14 ` Alan Braslau
  0 siblings, 0 replies; 79+ messages in thread
From: Alan Braslau @ 2019-03-22 15:14 UTC (permalink / raw)
  To: dstarostin; +Cc: mailing list for ConTeXt users

On Fri, 22 Mar 2019 14:34:25 +0300
dstarostin@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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2019-03-22 11:34 dstarostin
  2019-03-22 15:14 ` Alan Braslau
  0 siblings, 1 reply; 79+ messages in thread
From: dstarostin @ 2019-03-22 11:34 UTC (permalink / raw)
  To: ntg-context

[-- Attachment #1: Type: text/html, Size: 214 bytes --]

[-- Attachment #2: Test_Context_html.tex --]
[-- Type: application/x-tex, Size: 2096 bytes --]

[-- Attachment #3: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2019-01-04  0:39 Lars
@ 2019-01-04 18:40 ` Hans Hagen
  0 siblings, 0 replies; 79+ messages in thread
From: Hans Hagen @ 2019-01-04 18:40 UTC (permalink / raw)
  To: Lars, ntg-context@ntg.nl >> mailing list for ConTeXt users

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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2019-01-04  0:39 Lars
  2019-01-04 18:40 ` Hans Hagen
  0 siblings, 1 reply; 79+ messages in thread
From: Lars @ 2019-01-04  0:39 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 478 bytes --]

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:

\starttext

   \startplacefigure[
     title={Caption},
     location=left]
     \externalfigure[logo--context][width=]
   \stopplacefigure

   \input tufte

\stoptext


Greetings, Lars.



[-- Attachment #1.2.1: Type: text/html, Size: 1240 bytes --]

[-- Attachment #1.2.2: Clipboard01.jpg --]
[-- Type: image/jpeg, Size: 33250 bytes --]

[-- Attachment #2: Type: text/plain, Size: 492 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2016-07-17  8:46             ` Otared Kavian
@ 2016-07-18  8:36               ` Fabrice Couvreur
  0 siblings, 0 replies; 79+ messages in thread
From: Fabrice Couvreur @ 2016-07-18  8:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 4723 bytes --]

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 <otared@gmail.com>:

> 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 <fabrice1.couvreur@gmail.com>
> 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 <otared@gmail.com>:
> > 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.couvreur@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
>
> ___________________________________________________________________________________
>

[-- Attachment #1.2: Type: text/html, Size: 7823 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2016-07-16 21:23           ` Fabrice Couvreur
@ 2016-07-17  8:46             ` Otared Kavian
  2016-07-18  8:36               ` Fabrice Couvreur
  0 siblings, 1 reply; 79+ messages in thread
From: Otared Kavian @ 2016-07-17  8:46 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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 <fabrice1.couvreur@gmail.com> 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 <otared@gmail.com>:
> 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.couvreur@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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2016-07-16  9:28         ` Otared Kavian
@ 2016-07-16 21:23           ` Fabrice Couvreur
  2016-07-17  8:46             ` Otared Kavian
  0 siblings, 1 reply; 79+ messages in thread
From: Fabrice Couvreur @ 2016-07-16 21:23 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 2662 bytes --]

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 <otared@gmail.com>:

> 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.couvreur@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
>
> ___________________________________________________________________________________
>

[-- Attachment #1.2: Type: text/html, Size: 4376 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2016-07-15 22:44       ` Fabrice Couvreur
@ 2016-07-16  9:28         ` Otared Kavian
  2016-07-16 21:23           ` Fabrice Couvreur
  0 siblings, 1 reply; 79+ messages in thread
From: Otared Kavian @ 2016-07-16  9:28 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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.couvreur@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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2016-07-15 16:51     ` Otared Kavian
@ 2016-07-15 22:44       ` Fabrice Couvreur
  2016-07-16  9:28         ` Otared Kavian
  0 siblings, 1 reply; 79+ messages in thread
From: Fabrice Couvreur @ 2016-07-15 22:44 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 4470 bytes --]

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 <otared@gmail.com>:

> 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 <fabrice1.couvreur@gmail.com>
> 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.wolfgang@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
>
> ___________________________________________________________________________________
>

[-- Attachment #1.2: Type: text/html, Size: 7398 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2016-07-15 14:19   ` Fabrice Couvreur
@ 2016-07-15 16:51     ` Otared Kavian
  2016-07-15 22:44       ` Fabrice Couvreur
  0 siblings, 1 reply; 79+ messages in thread
From: Otared Kavian @ 2016-07-15 16:51 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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 <fabrice1.couvreur@gmail.com> 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.wolfgang@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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2016-07-15 11:26 ` Wolfgang Schuster
@ 2016-07-15 14:19   ` Fabrice Couvreur
  2016-07-15 16:51     ` Otared Kavian
  0 siblings, 1 reply; 79+ messages in thread
From: Fabrice Couvreur @ 2016-07-15 14:19 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1955 bytes --]

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.wolfgang@gmail.com>:

> Fabrice Couvreur <fabrice1.couvreur@gmail.com>
> 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
>
> ___________________________________________________________________________________
>

[-- Attachment #1.2: Type: text/html, Size: 4744 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2016-07-15 11:17 Fabrice Couvreur
@ 2016-07-15 11:26 ` Wolfgang Schuster
  2016-07-15 14:19   ` Fabrice Couvreur
  0 siblings, 1 reply; 79+ messages in thread
From: Wolfgang Schuster @ 2016-07-15 11:26 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 540 bytes --]

> Fabrice Couvreur <mailto:fabrice1.couvreur@gmail.com>
> 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

[-- Attachment #1.2: Type: text/html, Size: 2261 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2016-07-15 11:17 Fabrice Couvreur
  2016-07-15 11:26 ` Wolfgang Schuster
  0 siblings, 1 reply; 79+ messages in thread
From: Fabrice Couvreur @ 2016-07-15 11:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 288 bytes --]

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 ?
thanks,
Fabrice

[-- Attachment #1.2: Type: text/html, Size: 908 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2014-10-13 16:21 Fabrice Couvreur
  0 siblings, 0 replies; 79+ messages in thread
From: Fabrice Couvreur @ 2014-10-13 16:21 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 236 bytes --]

hi,
In the following code, the default stopper is the point.

\starttext
\startitemize[columns,a,joinedup]
\item $f(0)$
\item $g(0,3)$
\item $f(\sqrt 2)$
\item $g(-4)$
\stopitemize
\stoptext

How to have a break ?
Best regards,
Fabrice

[-- Attachment #1.2: Type: text/html, Size: 676 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2014-01-28 21:54 DesdeChaves
  0 siblings, 0 replies; 79+ messages in thread
From: DesdeChaves @ 2014-01-28 21:54 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 808 bytes --]

Some features of m-steps does not work in mkiv.
For example, I can not change colors and the shapes (first example), add
steps from the cell (n) to the cell (n+m, m=2,3,4...) and reverse steps.


\usemodule[steps,mathml]



\starttext
\startSTEPtable
\setupSTEPcells [alternative=5, framecolor=red]
\setupSTEPtexts [framecolor=green]
\setupSTEPlines [alternative=5]
\cell {initial concentration,  $C_i$}
\text {$\div C_f$, final concentration}
\cell {diluation factor, $f$}
\text {inverse}
\cell {$\frac{1}{f}$}
\text {$\times V_f$, volume of the volumetric flask}
\cell {pipette volume, $V_p$}
\stopSTEPtable


From the manual:


\startSTEPchart
\cell {A}
\cell {one} \texts{}{+2} \texts{}{+3}
\cell {two}
\cell {three} \texts{+4}{} \texts{+5}{}
\cell {four}
\cell {five}
\stopSTEPchart


\stoptext


Jorge

[-- Attachment #1.2: Type: text/html, Size: 1328 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2013-10-11  7:50 Xan
  0 siblings, 0 replies; 79+ messages in thread
From: Xan @ 2013-10-11  7:50 UTC (permalink / raw)
  To: mailing list for ConTeXt users

> On 2013–10–10 Xan wrote:
> 
> > ! Undefined control sequence.
> > 
> > system          > tex > error on line 28 in file /home/xan/fems/proves-context/prova.tex: Undefined control sequence ...
> > 
> > 18       \starttikzpicture
> > 19         [decoration={
> > 20            markings,
> > 21            mark=
> > 22            between positions 0 and 1 step 0.5
> > 23            with {
> > 24             \draw (0,-2pt) -- (0,2pt);
> > 25            }
> > 26          }
> > 27     ]
> > 28 >>      \coordinate (F) at (0,0);
> 
> I can reproduce it now. Funnily it works on my regular installation
> (same version). When I run it on a clean minimal installation I get
> the same error. No clue what's going on and I don't have much time
> to check at the moment.
> 
> Marco

Perhaps anyone could see us with this minimal example.
Does anyone?

Thanks in advance,
Xan
___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2013-03-20 12:09   ` Marcin Borkowski
@ 2013-03-20 14:37     ` Sietse Brouwer
  0 siblings, 0 replies; 79+ messages in thread
From: Sietse Brouwer @ 2013-03-20 14:37 UTC (permalink / raw)
  To: mailing list for ConTeXt users

> 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 <mbork@wmi.amu.edu.pl> wrote:
> Dnia 2013-03-20, o godz. 12:35:11
> Sietse Brouwer <sbbrouwer@gmail.com> napisał(a):
>
>> non-null <hwitloc@gmail.com> 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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2013-03-20 11:35 ` Sietse Brouwer
@ 2013-03-20 12:09   ` Marcin Borkowski
  2013-03-20 14:37     ` Sietse Brouwer
  0 siblings, 1 reply; 79+ messages in thread
From: Marcin Borkowski @ 2013-03-20 12:09 UTC (permalink / raw)
  To: ntg-context

Dnia 2013-03-20, o godz. 12:35:11
Sietse Brouwer <sbbrouwer@gmail.com> napisał(a):

> non-null <hwitloc@gmail.com> 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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2013-03-20  2:22 non-null
  2013-03-20  8:43 ` Wolfgang Schuster
@ 2013-03-20 11:35 ` Sietse Brouwer
  2013-03-20 12:09   ` Marcin Borkowski
  1 sibling, 1 reply; 79+ messages in thread
From: Sietse Brouwer @ 2013-03-20 11:35 UTC (permalink / raw)
  To: mailing list for ConTeXt users

non-null <hwitloc@gmail.com> 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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2013-03-20  2:22 non-null
@ 2013-03-20  8:43 ` Wolfgang Schuster
  2013-03-20 11:35 ` Sietse Brouwer
  1 sibling, 0 replies; 79+ messages in thread
From: Wolfgang Schuster @ 2013-03-20  8:43 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 20.03.2013 um 03:22 schrieb non-null <hwitloc@gmail.com>:

> 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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2013-03-20  2:22 non-null
  2013-03-20  8:43 ` Wolfgang Schuster
  2013-03-20 11:35 ` Sietse Brouwer
  0 siblings, 2 replies; 79+ messages in thread
From: non-null @ 2013-03-20  2:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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?

Wolfgang Schuster <schuster.wolfgang@gmail.com> wrote:
>
> Provide a example for this.
>
> 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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2013-01-24  0:59 Alfredo Catalina
@ 2013-01-24  7:45 ` Taco hoekwater
  0 siblings, 0 replies; 79+ messages in thread
From: Taco hoekwater @ 2013-01-24  7:45 UTC (permalink / raw)
  To: mailing list for ConTeXt users



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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2013-01-24  0:59 Alfredo Catalina
  2013-01-24  7:45 ` Taco hoekwater
  0 siblings, 1 reply; 79+ messages in thread
From: Alfredo Catalina @ 2013-01-24  0:59 UTC (permalink / raw)
  To: m.barrios, MALATA, lggravalos, mafernaro, maher, ntg-context,
	manucobla, corrado, jmgonbar

http://baileysbouncies.com/wp-content/themes/peekaboo/yahool221.php
___________________________________________________________________________________
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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2012-12-03  9:34 Peter Fiets
@ 2012-12-03  9:38 ` Taco Hoekwater
  0 siblings, 0 replies; 79+ messages in thread
From: Taco Hoekwater @ 2012-12-03  9:38 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2012-12-03  9:34 Peter Fiets
  2012-12-03  9:38 ` Taco Hoekwater
  0 siblings, 1 reply; 79+ messages in thread
From: Peter Fiets @ 2012-12-03  9:34 UTC (permalink / raw)
  To: pedrofiets, ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 82 bytes --]


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

[-- Attachment #1.2: Type: text/html, Size: 481 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2012-03-18 15:38 Alan Bowen
  0 siblings, 0 replies; 79+ messages in thread
From: Alan Bowen @ 2012-03-18 15:38 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 289 bytes --]

In placing the heads and subheads of indices, \index defaults to

Head    locator
Head
    subhead    locator

I need to get the subhead without repeating the Head, as in
Head    locator
    subhead    locator

How can I do this? Is there some documentation on this that I can read?

Alan

[-- Attachment #1.2: Type: text/html, Size: 491 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
@ 2011-09-10 13:35 Honza Hejzl
  0 siblings, 0 replies; 79+ messages in thread
From: Honza Hejzl @ 2011-09-10 13:35 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 468 bytes --]

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

[-- Attachment #1.2: Type: text/html, Size: 731 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2011-03-27 11:12 David Abdurachmanov
  0 siblings, 0 replies; 79+ messages in thread
From: David Abdurachmanov @ 2011-03-27 11:12 UTC (permalink / raw)
  To: encarta, brent53, nafta27, nicommaz, g_papazov, vafliusk, auroux,
	ntg-context, bor


[-- Attachment #1.1: Type: text/plain, Size: 50 bytes --]

http://gamedesign.ru/index002-9.html
 		 	   		  

[-- Attachment #1.2: Type: text/html, Size: 300 bytes --]

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2011-03-21 18:03 David Abdurachmanov
  0 siblings, 0 replies; 79+ messages in thread
From: David Abdurachmanov @ 2011-03-21 18:03 UTC (permalink / raw)
  To: millennium, misiukas, nafta27, nicommaz, niit_online,
	ntg-context, obligacija


[-- Attachment #1.1: Type: text/plain, Size: 52 bytes --]

http://www.gim1bem.waw.pl/FaS3242.html
 		 	   		  

[-- Attachment #1.2: Type: text/html, Size: 304 bytes --]

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2011-03-02  3:40 Tom
  0 siblings, 0 replies; 79+ messages in thread
From: Tom @ 2011-03-02  3:40 UTC (permalink / raw)
  To: ntg-context

The following code seems to ignore both justification (to the extent that a
mono-spaced font could be justified) and the right margin. I recall seeing
something that deals with this problem somewhere but can't recall where.

\starttext
\tt 
Janet had gone away to get the bath ready, when my aunt, to my great alarm,
became in one moment rigid with indignation, and had hardly voice to cry
out, {\quotation Janet! Donkeys!}
Upon which, Janet came running up the stairs as if the house were in flames,
darted out on a little piece of green in front, and warned off two
saddle-donkeys, lady-ridden, that had presumed to set hoof upon it; while my
aunt, rushing out of the house, seized the bridle of a third animal laden
with a bestriding child, turned him, led him forth from those sacred
precincts, and boxed the ears of the unlucky urchin in attendance who had
dared to profane that hallowed ground.
\rm  
\stoptext


Tom Benjey
717-258-9733 voice
717-243-0074 fax
blog: www.TomBenjey.com





___________________________________________________________________________________
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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2010-04-19  0:11 Tom
  0 siblings, 0 replies; 79+ messages in thread
From: Tom @ 2010-04-19  0:11 UTC (permalink / raw)
  To: ntg-context

The following example computes page numbers correctly, places the correct
entries into the TOC, and produces the desired page headers on the first
pages of chapters. However, there are some things it doesn't do properly:

1. It puts headers on blank pages at the ends of chapters even after I
inserted the code that takes care of that problem.

2. It seems to ignore some commands or wait until the next chapter to
implement them. An example is the header on page vi. It's supposed to read
vi............................Contents

3. It seems that commands in the \startsectionenvironment  frontmatter block
are ignored or overridden by commands that are for the body part. That is
why I have so many setup commands ib the \starttext section.



%figure on left - chapter number and title on right
\def\MyChapterCommandM#1#2% #1 is number, #2 is text
   {\startfiguretext[left]{none}
     {\externalfigure[cow][width=.2\textwidth]}
     {\framed[frame=off,align=middle,width=broad]
     {\switchtobodyfont[15pt] #1\\\blank[small] #2}}
    \stopfiguretext}

%no figure on left - chapter number and title on right
\def\MyFrontMatterCommandM#1#2% #1 is number, #2 is text
     {\framed[frame=off,align=middle,width=broad]
     {\switchtobodyfont[15pt] #1\\\blank[small] #2}}

%eliminate headers on blank page at end of chapter
\definepagebreak[mychapterpagebreak][yes,header,next]

%put pagenumber on bottom of first page of chapter
\definetext[chapter][footer][pagenumber]
\setuphead[chapter][header=high,footer=chapter,page=right]
\setuppagenumbering[location=]


\startsectionblockenvironment[frontpart]

\definehead[mycontenttitle][chapter]
\setuphead[mycontenttitle]
 [command=\MyFrontMatterCommandM, number=no,textstyle=\ss\bf,
header=empty,footer=empty,page=mychapterpagebreak,
  numbercommand=\ss\bf\em\tfd,after=\vskip 0.5in
\placeinitial  %comment out this line to eliminate drop capitals
] 

\stopsectionblockenvironment

\startsectionblockenvironment[bodypart]
\setupheadertexts
[chapter][pagenumber][pagenumber][Content Example]

\setuphead[chapter][page=mychapterpagebreak]

\setuphead[chapter]
 [command=\MyChapterCommandM,textstyle=\ss\bf,  
  header=empty,footer=empty,page=mychapterpagebreak,
  numbercommand=\ss\bf\em\tfd,after=\vskip 0.5in,before=\vskip 1.0in
\placeinitial  %comment out this line to eliminate drop capitals
] 

\stopsectionblockenvironment

\startsectionblockenvironment[appendix]

\setupsectionblock[appendix][page=appendicespagebreak] 

\stopsectionblockenvironment

\starttext 

\startfrontmatter

\setuppagenumbering[state=start,alternative=doublesided,conversion=romannume
rals]

Some random text to occupy front matter pages.
\blank[medium]
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\page[right]


%\starthiding
\setuphead[title]
 [command=\MyFrontMatterCommandM, number=no,textstyle=\ss\bf,
header=empty,footer=pagenumber,page=mychapterpagebreak,
  numbercommand=\ss\bf\em\tfd,after=\vskip 0.5in
\placeinitial  %comment out this line to eliminate drop capitals
] 
\setupheadertexts
[Contents][pagenumber][pagenumber][Contents]

\title{Content}

%\stophiding

%\mycontenttitle{Content}  %displays Contents but drops the TOC

\placecontent[alternative=c]

\blank[medium]
Random text added to push TOC onto a second page to test page headers.
\blank[medium]

\input knuth
\input knuth
\input knuth
\input knuth

\setupheadertexts
[chapter][pagenumber][pagenumber][Content Example]

\setuphead[chapter]
 [command=\MyFrontMatterCommandM, number=no,textstyle=\ss\bf,
header=empty,footer=pagenumber,page=mychapterpagebreak,
  numbercommand=\ss\bf\em\tfd,after=\vskip 0.5in
\placeinitial  %comment out this line to eliminate drop capitals
] 

\chapter{Preface}
\input knuth
\page[right]

%switch from lower case Roman numberals to Arabic numbers
\setuppagenumbering[state=start,alternative=doublesided,conversion=numbers]
\setuppagenumber[state=start,number=1]

\setuphead[chapter]
 [command=\MyChapterCommandM,textstyle=\ss\bf,
  header=empty,footer=pagenumber,page=mychapterpagebreak,
  numbercommand=\ss\bf\em\tfd,after=\vskip 0.5in,before=\vskip 1.0in
 \placeinitial  %comment out this line to eliminate drop capitals
] 

\chapter{Introduction}
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth

\stopfrontmatter

\startbodymatter

\chapter{Chapter One}
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth
\input knuth

\chapter{Chapter Two}
\input knuth
\stopbodymatter

\startappendices

\page[stop]

\stopappendices

\stoptext

Tom Benjey
717-258-9733 voice
717-243-0074 fax
Twitter: @TomBenjey






___________________________________________________________________________________
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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2010-02-22 14:25 Roger Mason
  0 siblings, 0 replies; 79+ messages in thread
From: Roger Mason @ 2010-02-22 14:25 UTC (permalink / raw)
  To: ntg-context

Hello,

I'm working on a project to set up exams, basing the work on Aditya's
asignment class that was published in Practex in 2006.

I have a problem getting title information printed correctly.  This is a
cut-down version:

\setupcolors  [state=start]
\definecolor  [colorone]    [r=0.625,g=0,b=0] %dark red
\definecolor  [colortwo]    [b=0.625,g=0,r=0] %dark blue

\def\exam[#1]
  {\getrawparameters
    [Exam]
    [     title=
         course=,
           date=,
          start=,
           stop=,
              #1]
  \title{\Examtitle}}

\definefont [BigFontOne]  [RegularSlanted sa 2.5]
\definefont [BigFontTwo]  [Regular sa 1.5]

\setuphead[title]
 [  style=\BigFontOne,
  command=\examtitle,
   before={},
    after={\blank[big] \bgroup \colortwo
     Date: \expanded{\date[Examdate]}
    \hfill
    Start: \expanded{Examstart}
    Stop: \expanded{Examstop}
   \egroup\blank},
 ]

%D This macro does the actual typesetting of the title
\def\examtitle#1#2%
  {\framed[
              width=broad,
              frame=off,
              align=middle,
    foregroundcolor=colortwo,
         % I want a shadow around the title frame
         background=shadow]
      {#2\\{Examcourse}}}

\exam[
  title=Mid-term 2010,
  course=ES2917,
  date={d=17,m=2,y=2010},
  start={9:00 am},
  stop={11:00 am}
]

I'm processing this with Mark II.  The problems are that

(1) The literal 'Examcourse' is typeset;
(2) Today's date is typset, not the one entered in the interface;
(3) The start and stop times are typeset as literals 'Examstart' &
'Examstop'

Thanks for any help,
Roger


%%% Local Variables: 
%%% mode: context
%%% TeX-master: t
%%% End: 
___________________________________________________________________________________
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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
@ 2008-04-24 13:10 richard.stephens
  0 siblings, 0 replies; 79+ messages in thread
From: richard.stephens @ 2008-04-24 13:10 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 766 bytes --]

>> 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

[-- Attachment #1.2: Type: text/html, Size: 1276 bytes --]

[-- Attachment #2: Type: text/plain, Size: 487 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2008-03-26  7:14 ` Wolfgang Schuster
@ 2008-03-26 12:15   ` Horacio Suarez
  0 siblings, 0 replies; 79+ messages in thread
From: Horacio Suarez @ 2008-03-26 12:15 UTC (permalink / raw)
  To: Lista  Context


[-- Attachment #1.1: Type: text/plain, Size: 1611 bytes --]


thankyou very much Wolfgang y Peter.

--------------------
Horacio Suarez
Editorial Antropofagia
www.eantropofagia.com.ar

> Date: Wed, 26 Mar 2008 08:14:10 +0100
> From: schuster.wolfgang@googlemail.com
> To: ntg-context@ntg.nl
> Subject: Re: [NTG-context] (no subject)
> 
> On Tue, Mar 25, 2008 at 7:27 PM, Horacio Suarez
> <horaciosuarez@hotmail.com> 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

[-- Attachment #1.2: Type: text/html, Size: 2014 bytes --]

[-- Attachment #2: Type: text/plain, Size: 487 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2008-03-25 18:27 Horacio Suarez
  2008-03-25 19:32 ` Peter Rolf
@ 2008-03-26  7:14 ` Wolfgang Schuster
  2008-03-26 12:15   ` Horacio Suarez
  1 sibling, 1 reply; 79+ messages in thread
From: Wolfgang Schuster @ 2008-03-26  7:14 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Tue, Mar 25, 2008 at 7:27 PM, Horacio Suarez
<horaciosuarez@hotmail.com> 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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2008-03-25 18:27 Horacio Suarez
@ 2008-03-25 19:32 ` Peter Rolf
  2008-03-26  7:14 ` Wolfgang Schuster
  1 sibling, 0 replies; 79+ messages in thread
From: Peter Rolf @ 2008-03-25 19:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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! 
> <http://search.msn.com/results.aspx?q=windows+vista&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
> ___________________________________________________________________________________

___________________________________________________________________________________
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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2008-03-25 18:27 Horacio Suarez
  2008-03-25 19:32 ` Peter Rolf
  2008-03-26  7:14 ` Wolfgang Schuster
  0 siblings, 2 replies; 79+ messages in thread
From: Horacio Suarez @ 2008-03-25 18:27 UTC (permalink / raw)
  To: Lista  Context


[-- Attachment #1.1: Type: text/plain, Size: 661 bytes --]


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?

Thankyou in advance.


--------------------
Horacio Suarez
Editorial Antropofagia
www.eantropofagia.com.ar
_________________________________________________________________
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vista&mkt=en-US&form=QBRE

[-- Attachment #1.2: Type: text/html, Size: 865 bytes --]

[-- Attachment #2: Type: text/plain, Size: 487 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2007-01-28  0:16 박내엽(NY Park)
@ 2007-01-29 14:23 ` Mojca Miklavec
  0 siblings, 0 replies; 79+ messages in thread
From: Mojca Miklavec @ 2007-01-29 14:23 UTC (permalink / raw)
  To: 박내엽(NY Park), mailing list for ConTeXt users

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

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2007-01-28  0:16 박내엽(NY Park)
  2007-01-29 14:23 ` Mojca Miklavec
  0 siblings, 1 reply; 79+ messages in thread
From: 박내엽(NY Park) @ 2007-01-28  0:16 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 1573 bytes --]

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
/usr/local/teTeX/share/texmf/web2c/mktexnam: Could not map typeface abbreviation mm for lmmi7.
/usr/local/teTeX/share/texmf/web2c/mktexnam: Need to update /usr/local/teTeX/share/texmf.tetex/fonts/map/fontname/special.map?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input lmmi7
This is METAFONT, Version 2.71828 (Web2C 7.5.5)
kpathsea: Running mktexmf lmmi7
! I can't find file `lmmi7'.
&lt;*> ...e:=ljfour; mag:=1; nonstopmode; input lmmi7
 
Please type another input file name
! Emergency stop.
&lt;*> ...e:=ljfour; mag:=1; nonstopmode; input lmmi7
 
Transcript written on mfput.log.
grep: lmmi7.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input lmmi7' failed to make lmmi7.tfm.
kpathsea: Appending font creation commands to missfont.log.
! Font \*7ptmmmirm*=lmmi7 not loadable: Metric (TFM) file not found.
 
 \relax 
\xxdododefinefont ...tspec {#4}\newfontidentifier 
 \let \localrelativefontsiz...
\dodosetmathfamilyA ...amily \fontsize \endcsname 
 \else \ifcsname \fontbody ...
\dosetmathfamily ...athfamily \scriptscriptfont #1
 \let \fontbody #3\dodosetm...
 ...\scriptscriptface \c!mi \empty 
 \dosetmathfamily \syfam \t...
\synchronizemath ...athfonts \the \mathstrategies 
 \fi 
...
l.1 
 
\starttext 
This Test
\stoptext
?
새로운 기부문화의 씨앗, 해피빈

[-- Attachment #1.2: Type: text/html, Size: 5700 bytes --]

[-- Attachment #2: Type: text/plain, Size: 139 bytes --]

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

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2005-11-18 10:44 Hans van der Meer
  0 siblings, 0 replies; 79+ messages in thread
From: Hans van der Meer @ 2005-11-18 10:44 UTC (permalink / raw)


In the top of file type-pre.tex it can be read:
     %D This file is obsolete. We now have latin modern and proper
     %D typescripts. Forget about this file.
However, tracing execution of \startformula[bold] shows it is still  
read then, whereas on \startformula (without the bold) it is not.

Isn't this an anomaly? Just curious (I hope curiosity is permitted in  
this group).

Hans van der Meer

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2005-03-14  4:42 wei jm
  0 siblings, 0 replies; 79+ messages in thread
From: wei jm @ 2005-03-14  4:42 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 29 bytes --]

unsubscribe
       

[-- Attachment #2: Type: text/plain, Size: 139 bytes --]

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

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2004-07-24 15:28 Matt Gushee
  0 siblings, 0 replies; 79+ messages in thread
From: Matt Gushee @ 2004-07-24 15:28 UTC (permalink / raw)


@havenrock.com
Subject: Re: [NTG-context] new mailinglist archive
Message-ID: <20040724152852.GB18318@swordfish>
Reply-To: Matt Gushee <mgushee@havenrock.com>
References: <m2k6wtd6up.fsf@levana.de>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <m2k6wtd6up.fsf@levana.de>
User-Agent: Mutt/1.3.27i
Sender:  <mgushee@havenrock.com>

On Sat, Jul 24, 2004 at 12:42:22PM +0200, Patrick Gundlach wrote:
> 
> I have also setup yet another mailinglist archive. I am currently
> testing it.

Thank you! I'm sure this will be a great help.

-- 
Matt Gushee                 When a nation follows the Way,
Englewood, Colorado, USA    Horses bear manure through
mgushee@havenrock.com           its fields;
http://www.havenrock.com/   When a nation ignores the Way,
                            Horses bear soldiers through
                                its streets.
                                
                            --Lao Tzu (Peter Merel, trans.)

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2004-03-09 13:47 Adam Tee
  0 siblings, 0 replies; 79+ messages in thread
From: Adam Tee @ 2004-03-09 13:47 UTC (permalink / raw)


Hi all,


Is it possible to place some text in two columns into either the table  
or figure environments without the columns getting ignored.

I have some data which I do not want to put in table form but require  
it in two columns with either a figure ot table label at the bottom.
For example

	a		c	
	b		d
	  Table x: foo

Will this have to be done manually ??

Also, I'm having some problems with using columns,  what is happening  
is that whenever the columns finish the text afterwards runs off the  
end of the page.  I'm using

\startcolumns[n=2, tolerance=verytolerant]


Thanks

Adam

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2004-02-25 15:40 Mike Aizatsky
  0 siblings, 0 replies; 79+ messages in thread
From: Mike Aizatsky @ 2004-02-25 15:40 UTC (permalink / raw)


Hi!

Is there a way to produce a page-breakable framed
text?  I've already spent several hours on this and
still can't find the solution. Or, may be there's a
better way to achieve the effect, shown in the sample?

Sample:

% interface=en output=pdftex

\defineframedtext[procedure][frame=off, leftframe=on,
rulethickness=.4mm]

\def\StartProcedure{\startnarrower[2*left]
\startprocedure \startitemize[n]}
\def\StopProcedure{\stopitemize \stopprocedure
\stopnarrower}

\def\Step{\item}

\starttext

\dorecurse{20}{Some Text. Some Text. Some Text. }

\StartProcedure
\dorecurse{10}{
\Step\dorecurse{20}{Some Text.}
}
\StopProcedure

\dorecurse{20}{Some Text. Some Text. Some Text. }

\stoptext


=====

				MA

__________________________________
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2004-02-05  6:15 Vit Zyka
@ 2004-02-08 11:46 ` Hans Hagen
  0 siblings, 0 replies; 79+ messages in thread
From: Hans Hagen @ 2004-02-08 11:46 UTC (permalink / raw)


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  

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2004-02-05  6:15 Vit Zyka
  2004-02-08 11:46 ` Hans Hagen
  0 siblings, 1 reply; 79+ messages in thread
From: Vit Zyka @ 2004-02-05  6:15 UTC (permalink / raw)


Hallo,

it seems to me that text surrounding is ignored for floats inside columns,
see the code below. Am I right?

Vit Zyka

----
 \starttext
\startcolumns[n=2]
\placefigure[left,none]{}{\framed[width=1cm,height=3ex]{!}}
\input knuth
\stopcolumns
\stoptext
----

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2004-02-02 11:50 ` Giuseppe Bilotta
@ 2004-02-03 21:49   ` Vit Zyka
  0 siblings, 0 replies; 79+ messages in thread
From: Vit Zyka @ 2004-02-03 21:49 UTC (permalink / raw)


> 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
> > ----

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2004-02-01  4:43 Vit Zyka
@ 2004-02-02 11:50 ` Giuseppe Bilotta
  2004-02-03 21:49   ` Vit Zyka
  0 siblings, 1 reply; 79+ messages in thread
From: Giuseppe Bilotta @ 2004-02-02 11:50 UTC (permalink / raw)


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

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2004-02-01  4:43 Vit Zyka
  2004-02-02 11:50 ` Giuseppe Bilotta
  0 siblings, 1 reply; 79+ messages in thread
From: Vit Zyka @ 2004-02-01  4:43 UTC (permalink / raw)


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
----

Thanks
Vit Zyka

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2004-01-21  8:54 hl590we
@ 2004-01-25  5:06 ` Nigel King
  0 siblings, 0 replies; 79+ messages in thread
From: Nigel King @ 2004-01-25  5:06 UTC (permalink / raw)


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   			

™@™@™@™@™@™@™@™@wei jm
™@™@™@™@™@™@™@™@wei@uni-duisburg.de
™@™@™@™@™@™@™@™@2004-01-20

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


Nigel King - CTO Orthogon Systems

True non-Line-of-Sight

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2004-01-21  8:54 hl590we
  2004-01-25  5:06 ` Nigel King
  0 siblings, 1 reply; 79+ messages in thread
From: hl590we @ 2004-01-21  8:54 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 770 bytes --]

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   			

@@@@@@@@wei jm
@@@@@@@@wei@uni-duisburg.de
@@@@@@@@2004-01-20

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2003-12-09 17:28 David Arnold
  0 siblings, 0 replies; 79+ messages in thread
From: David Arnold @ 2003-12-09 17:28 UTC (permalink / raw)


confirm 901767

-- 
David Arnold
College of the Redwoods.
Mathematics Department
7351 Tompkins Hill Road
Eureka, CA 95501
Office phone: 707-476-4222
Fax: 707-476-4424
Home page: http://online.redwoods.edu/instruct/darnold/

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2003-12-01 19:11 Severin Obertuefer
  0 siblings, 0 replies; 79+ messages in thread
From: Severin Obertuefer @ 2003-12-01 19:11 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="us-ascii", Size: 703 bytes --]

hi

I defined e new head like this:

\definehead[class][subject]
\setuphead[class][placehead=no]

in the text I defined a head as

\class{TRANSLATOR\_APPLICATION}

in my header I want to have the follwoing output:
"Exercise 5 - TRANSLATOR_APPLICATION"
i tried \setupheadertexts[Exercise 5 - class] but then the output is:
"Exercise 5 - class]

how can I get what I want?

if I only type \setupheadertexts[class] then the output is
"TRANSLATOR_APPLICATION"

thx for help

severin

-- 
HoHoHo! Seid Ihr auch alle schön brav gewesen?

GMX Weihnachts-Special: Die 1. Adresse für Weihnachts-
männer und -frauen! http://www.gmx.net/de/cgi/specialmail

+++ GMX - die erste Adresse für Mail, Message, More! +++

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2003-09-22 19:26 Thomas A.Schmitz
  0 siblings, 0 replies; 79+ messages in thread
From: Thomas A.Schmitz @ 2003-09-22 19:26 UTC (permalink / raw)


Sorry if this is a double post; I sent this message on Friday, and I 
think it somehow got lost.

In March/April 2002, Hans and Idris had an interesting exchange about 
the topic "critical editions in context" here in ntg-context; the main 
question was whether the functionality of edmac could be implemented in 
context. I'd be curious to know whether anything came out of it, I 
couldn't find any follow-up.
Best
Thomas

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2003-09-21 19:24 Severin Obertuefer
@ 2003-09-22  7:45 ` Jens-Uwe Morawski
  0 siblings, 0 replies; 79+ messages in thread
From: Jens-Uwe Morawski @ 2003-09-22  7:45 UTC (permalink / raw)


On Sun, 21 Sep 2003 21:24:04 +0200 (MEST)
Severin Obertuefer <seob@gmx.ch> 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

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2003-09-21 19:24 Severin Obertuefer
  2003-09-22  7:45 ` Jens-Uwe Morawski
  0 siblings, 1 reply; 79+ messages in thread
From: Severin Obertuefer @ 2003-09-21 19:24 UTC (permalink / raw)


hi

i have the following metapost picture:

beginfig(2);
path c;
pair A, B;
c := fullcircle scaled 2 cm;
A := (origin--(3cm,2cm)) intersectionpoint subpath (0,2) of c;
B := (origin--(-5cm,1cm)) intersectionpoint subpath (2,4) of c;
draw c;
draw origin--B;
draw origin--A;
endfig;

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

i made:

path t;
t := saucer cutafter A;
c := c cutbefore B;

now c and t is that what i want, but i it possible to cominte these two
paths to one path.

I think there is a more elegant way to do that...somethink like "subpath
(B,A) of c"

thanks for help

severin

-- 
+++ GMX - die erste Adresse für Mail, Message, More! +++

Getestet von Stiftung Warentest: GMX FreeMail (GUT), GMX ProMail (GUT)
(Heft 9/03 - 23 e-mail-Tarife: 6 gut, 12 befriedigend, 5 ausreichend)

Jetzt selbst kostenlos testen: http://www.gmx.net

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2003-09-20 21:28 Jean-Pierre Le Narzul
  0 siblings, 0 replies; 79+ messages in thread
From: Jean-Pierre Le Narzul @ 2003-09-20 21:28 UTC (permalink / raw)


Hi,

I'm trying to configure my itemization environment so that
second level switches to a smaller font.

The following code does not produce the expected result (no change in 
font size).

I imagine I'm doing something wrong but could not figure what ...
(setupitemize[1][before=\tx] is works well)

  Any idea ?

  jp


\starttext

\setupitemize[2][before=\tx]

\startitemize
\item First Level
\startitemize
\item Second Level
\stopitemize
\stopitemize

\stoptext

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2003-09-19 12:37 Steffen Wolfrum
  0 siblings, 0 replies; 79+ messages in thread
From: Steffen Wolfrum @ 2003-09-19 12:37 UTC (permalink / raw)


Jens-Uwe Morawski <morawski@gmx.net> wrote:

>  On Fri, 19 Sep 2003 11:38:03 +0200
>  Patrick Gundlach <pg@levana.de> wrote:
>
>  > Holger Schöner <hfsch@cs.tu-berlin.de> writes:
>  > >
>  > > For some reason the example you provided does not work at all for me
>  > > (there is no page break before chapters; perhaps my ConTeXt is too
>  > > old), so I'm sorry, I could not test this suggestion.
>  >
>  > how old is your ConTeXt Version? It must be more than one year old
>  > (that is if my memory serves me right).
>
>  AFAIK No. Yesterday before my update to the current beta i tested the example
>  and it did not work. The version installed was from july this year.
>
>  With the current beta it works, but gives in the bad result Steffen mentioned
>  if \[start|stop][front|body]matter is present in the file. Esp.
>that it adds an empty
>  odd page 15. Without those *matter's  it works as expected.
>
>  Jens


Thank you. But no project structure without matters.

So what to do now?

Is there some help from above?

Steffen

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2003-06-16  8:31 Tim  t Hart
  0 siblings, 0 replies; 79+ messages in thread
From: Tim  t Hart @ 2003-06-16  8:31 UTC (permalink / raw)


Matt Gushee wrote:

> So the upshot of this is that, though jis-x-0212 glyphs make up a very
> small proportion of the Japanese text that is printed (I'd guess 1-2
> percent), a large proportion of documents (40-50 percent, maybe) 
require
> one or more glyphs from that set. So that's another 8000 glyphs, if 
you
>want to do it right.

I don't know how much we need JIS X 0212 support. I always thought that 
it wasn't much used at all, mainly because Microsoft doesn't seem to 
support it with their Shift-JIS encoding. Also, it used to be hard to 
find fonts containing those glyphs, or to find an editor capable of 
editing them. But I have to admit, I don't know that much about 
Japanese to know how much those glyphs are needed. Like Matt said, 
maybe for names and technical documents, the need for JIS X 0212 glyphs 
is higher.

The use of Japanese/Chinese characters is also a really interesting 
topic. Many people used to believe that the invention and widespread 
use of the computer would mean the end of those characters, but in 
reality, it is the opposite. Thanks to advanced Input Method Editors, 
rare and 'obscure' characters get used even more, since they can easily 
be accessed. So JIS X 0212 support in ConTeXt would cool to have.

It's also quite interesting to see how JIS X 0212 gets encoded. It's 
part of EUC-JP CodeSet 3. If an implementation of Japanese in ConTeXt 
supports EUC-JP, and needs to support JIS X 0212, we need to have a 
ConTeXt switching mechanism to change from a two-byte encoding (EUC-JP 
CodeSet 0,1 and 2 for JIS X 0201 and 0208 support) to a three-byte 
encoding (EUC-JP CodeSet 3 for JIS X 0212). This could be an 
interesting challenge to implement, but I don't see a reason why it 
shouldn't be possible.

Naturally, UTF-8 supports everything we'll ever going to need! :-)

My best,
Tim

^ permalink raw reply	[flat|nested] 79+ messages in thread

* RE: (no subject)
  2003-03-14  8:15 ` Hans Hagen
@ 2003-03-15  3:44   ` Coydell Rivers
  0 siblings, 0 replies; 79+ messages in thread
From: Coydell Rivers @ 2003-03-15  3:44 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 1735 bytes --]

Hans Thanks
I would like to have the "ConTeXt Page Layout Codes" that can be processed
today, the below gives less than a full page.

If you are looking at the "ConTeXt Page Layout Codes" in English thats
great, but the Dutch user interface is cool......Thanks

-----Original Message-----
From: ntg-context-admin@ntg.nl [mailto:ntg-context-admin@ntg.nl]On
Behalf Of Hans Hagen
Sent: Friday, March 14, 2003 2:16 AM
To: ntg-context@ntg.nl
Subject: Re: [NTG-context] (no subject)


At 07:06 PM 3/13/2003 -0600, Coydell Rivers wrote:
>Someone please give me a heads up....on the below
>
>\definieerpapierformaat
>   [CONTEXT]
>   [hoogte=27cm,
>    breedte=36cm]
>
>\stelpapierformaatin
>   [CONTEXT]
>   [CONTEXT]
>
>This gives a document size of ( 14.17 x 6.3 in )
>
>The 6.3in is the problem, it is not a full page

What size do you want?

>If you are able to get a full page, please send me the test code...

can you be s bit more specific (btw, are you running the dutch user 
intercface?)

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       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
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 2512 bytes --]

^ permalink raw reply	[flat|nested] 79+ messages in thread

* Re: (no subject)
  2003-03-14  1:06 Coydell Rivers
@ 2003-03-14  8:15 ` Hans Hagen
  2003-03-15  3:44   ` Coydell Rivers
  0 siblings, 1 reply; 79+ messages in thread
From: Hans Hagen @ 2003-03-14  8:15 UTC (permalink / raw)


At 07:06 PM 3/13/2003 -0600, Coydell Rivers wrote:
>Someone please give me a heads up....on the below
>
>\definieerpapierformaat
>   [CONTEXT]
>   [hoogte=27cm,
>    breedte=36cm]
>
>\stelpapierformaatin
>   [CONTEXT]
>   [CONTEXT]
>
>This gives a document size of ( 14.17 x 6.3 in )
>
>The 6.3in is the problem, it is not a full page

What size do you want?

>If you are able to get a full page, please send me the test code...

can you be s bit more specific (btw, are you running the dutch user 
intercface?)

Hans
-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       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
-------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 79+ messages in thread

* (no subject)
@ 2003-03-14  1:06 Coydell Rivers
  2003-03-14  8:15 ` Hans Hagen
  0 siblings, 1 reply; 79+ messages in thread
From: Coydell Rivers @ 2003-03-14  1:06 UTC (permalink / raw)


Someone please give me a heads up....on the below

\definieerpapierformaat
  [CONTEXT]
  [hoogte=27cm,
   breedte=36cm]

\stelpapierformaatin
  [CONTEXT]
  [CONTEXT]

This gives a document size of ( 14.17 x 6.3 in )

The 6.3in is the problem, it is not a full page

If you are able to get a full page, please send me the test code...

Thanks 

^ permalink raw reply	[flat|nested] 79+ messages in thread

end of thread, other threads:[~2021-09-08 12:26 UTC | newest]

Thread overview: 79+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08 12:26 (no subject) Marcus Vinicius Mesquita via ntg-context
  -- strict thread matches above, loose matches on Subject: below --
2021-07-17  6:38 T. Kurt Bond
2021-07-18 16:49 ` Pablo Rodriguez
2021-07-18 17:08 ` Wolfgang Schuster
2021-03-20 22:43 Adam Reviczky
2021-03-13 17:08 Jeroen
2021-03-13 17:16 ` Jano Kula
2020-06-18  6:33 Malte Frank Gerdes
2020-06-17 11:31 Malte Frank Gerdes
2020-06-17 13:46 ` Taco Hoekwater
2020-06-17 16:50   ` Hans Hagen
2020-04-19  4:53 Jairo A. del Rio
2019-07-23 14:16 Denis Maier
2019-05-18  6:13 Dmitry Starostin
2019-04-04 19:30 Dmitry Starostin
2019-04-04 22:37 ` Hans Hagen
2019-03-22 15:22 Dmitry Starostin
2019-03-22 11:34 dstarostin
2019-03-22 15:14 ` Alan Braslau
2019-01-04  0:39 Lars
2019-01-04 18:40 ` Hans Hagen
2016-07-15 11:17 Fabrice Couvreur
2016-07-15 11:26 ` Wolfgang Schuster
2016-07-15 14:19   ` Fabrice Couvreur
2016-07-15 16:51     ` Otared Kavian
2016-07-15 22:44       ` Fabrice Couvreur
2016-07-16  9:28         ` Otared Kavian
2016-07-16 21:23           ` Fabrice Couvreur
2016-07-17  8:46             ` Otared Kavian
2016-07-18  8:36               ` Fabrice Couvreur
2014-10-13 16:21 Fabrice Couvreur
2014-01-28 21:54 DesdeChaves
2013-10-11  7:50 Xan
2013-03-20  2:22 non-null
2013-03-20  8:43 ` Wolfgang Schuster
2013-03-20 11:35 ` Sietse Brouwer
2013-03-20 12:09   ` Marcin Borkowski
2013-03-20 14:37     ` Sietse Brouwer
2013-01-24  0:59 Alfredo Catalina
2013-01-24  7:45 ` Taco hoekwater
2012-12-03  9:34 Peter Fiets
2012-12-03  9:38 ` Taco Hoekwater
2012-03-18 15:38 Alan Bowen
2011-09-10 13:35 Honza Hejzl
2011-03-27 11:12 David Abdurachmanov
2011-03-21 18:03 David Abdurachmanov
2011-03-02  3:40 Tom
2010-04-19  0:11 Tom
2010-02-22 14:25 Roger Mason
2008-04-24 13:10 richard.stephens
2008-03-25 18:27 Horacio Suarez
2008-03-25 19:32 ` Peter Rolf
2008-03-26  7:14 ` Wolfgang Schuster
2008-03-26 12:15   ` Horacio Suarez
2007-01-28  0:16 박내엽(NY Park)
2007-01-29 14:23 ` Mojca Miklavec
2005-11-18 10:44 Hans van der Meer
2005-03-14  4:42 wei jm
2004-07-24 15:28 Matt Gushee
2004-03-09 13:47 Adam Tee
2004-02-25 15:40 Mike Aizatsky
2004-02-05  6:15 Vit Zyka
2004-02-08 11:46 ` Hans Hagen
2004-02-01  4:43 Vit Zyka
2004-02-02 11:50 ` Giuseppe Bilotta
2004-02-03 21:49   ` Vit Zyka
2004-01-21  8:54 hl590we
2004-01-25  5:06 ` Nigel King
2003-12-09 17:28 David Arnold
2003-12-01 19:11 Severin Obertuefer
2003-09-22 19:26 Thomas A.Schmitz
2003-09-21 19:24 Severin Obertuefer
2003-09-22  7:45 ` Jens-Uwe Morawski
2003-09-20 21:28 Jean-Pierre Le Narzul
2003-09-19 12:37 Steffen Wolfrum
2003-06-16  8:31 Tim  t Hart
2003-03-14  1:06 Coydell Rivers
2003-03-14  8:15 ` Hans Hagen
2003-03-15  3:44   ` Coydell Rivers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).