ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Pagereference not working!?
@ 2012-04-07 10:17 Verhaag, G.C.H.M.
  2012-04-07 10:42 ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Verhaag, G.C.H.M. @ 2012-04-07 10:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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

Dear ConTeXt user's,

Today I upgraded to the latest MkIV release 2012.04.06!

I noticed that the \pagereference command is not working any more. Page 
referencing between external documents isn't working either!

Please run the included example file!

Regards,
Gerard Verhaag

[-- Attachment #2: at.tex --]
[-- Type: text/x-tex, Size: 433 bytes --]

% Pagereference test!

\setupinteraction
  [state=start,
   style=,
   color=blue,
   contrastcolor=,
   menu=on,
   title=Page Referencing Test File,
   author=Gerard Verhaag]

\starttext

\blank[big]
Here is the \type{\pagereference}. \pagereference[abc]
\blank[big]
\dorecurse{170}
  {A test of a page reference within a document!}
\blank[big]
From here I should jump to \at{page}[abc] page one, but\ldots not working!

\stoptext

[-- Attachment #3: 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] 5+ messages in thread

* Re: Pagereference not working!?
  2012-04-07 10:17 Pagereference not working!? Verhaag, G.C.H.M.
@ 2012-04-07 10:42 ` Wolfgang Schuster
  2012-04-07 13:16   ` Hans Hagen
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2012-04-07 10:42 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 07.04.2012 um 12:17 schrieb Verhaag, G.C.H.M.:

> Dear ConTeXt user's,
> 
> Today I upgraded to the latest MkIV release 2012.04.06!
> 
> I noticed that the \pagereference command is not working any more. Page referencing between external documents isn't working either!

There are indeed problems with the \reference, \textreference and \pagereference commands and \in and \at to show the values.

I made a example where you can see that the second shows the counter and page with \in and \at but for the other reference commands you have to use \getreference to show the values.

\starttexdefinition ReferenceTable [#1]

  \starttabulate[|l|l|]
  \NC \bf #1   \NC                             \NC\NR
  \TB[small]
  \NC in       \EQ \in[#1]                     \NC\NR
  \NC at       \EQ \at[#1]                     \NC\NR
  \NC about    \EQ \about[#1]                  \NC\NR
  \NC number   \EQ \getreference[number][#1]   \NC\NR
  \NC page     \EQ \getreference[page][#1]     \NC\NR
  \NC title    \EQ \getreference[title][#1]    \NC\NR
  \NC text     \EQ \getreference[text][#1]     \NC\NR
  \NC default  \EQ \getreference[default][#1]  \NC\NR
  \NC realpage \EQ \getreference[realpage][#1] \NC\NR
  \stoptabulate

\stoptexdefinition

\setupbodyfont[11pt]

\starttext

\section[zero]{Zero}

\reference    [one]{First}
\textreference[two]{Second}
\pagereference[three]
\setreference [four][page=3,default=4,number=12,text=Fourth,title=Four]

\page

\ReferenceTable[zero]
\ReferenceTable[one]
\ReferenceTable[two]
\ReferenceTable[three]
\ReferenceTable[four]

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


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

* Re: Pagereference not working!?
  2012-04-07 10:42 ` Wolfgang Schuster
@ 2012-04-07 13:16   ` Hans Hagen
  2012-04-07 15:09     ` Wolfgang Schuster
  2012-04-07 17:52     ` Verhaag, G.C.H.M.
  0 siblings, 2 replies; 5+ messages in thread
From: Hans Hagen @ 2012-04-07 13:16 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 7-4-2012 12:42, Wolfgang Schuster wrote:
>
> Am 07.04.2012 um 12:17 schrieb Verhaag, G.C.H.M.:
>
>> Dear ConTeXt user's,
>>
>> Today I upgraded to the latest MkIV release 2012.04.06!
>>
>> I noticed that the \pagereference command is not working any more. Page referencing between external documents isn't working either!
>
> There are indeed problems with the \reference, \textreference and \pagereference commands and \in and \at to show the values.

some grouping issue ... new beta

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

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


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

* Re: Pagereference not working!?
  2012-04-07 13:16   ` Hans Hagen
@ 2012-04-07 15:09     ` Wolfgang Schuster
  2012-04-07 17:52     ` Verhaag, G.C.H.M.
  1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Schuster @ 2012-04-07 15:09 UTC (permalink / raw)
  To: Hans Hagen; +Cc: mailing list for ConTeXt users


Am 07.04.2012 um 15:16 schrieb Hans Hagen:

> On 7-4-2012 12:42, Wolfgang Schuster wrote:
>> 
>> Am 07.04.2012 um 12:17 schrieb Verhaag, G.C.H.M.:
>> 
>>> Dear ConTeXt user's,
>>> 
>>> Today I upgraded to the latest MkIV release 2012.04.06!
>>> 
>>> I noticed that the \pagereference command is not working any more. Page referencing between external documents isn't working either!
>> 
>> There are indeed problems with the \reference, \textreference and \pagereference commands and \in and \at to show the values.
> 
> some grouping issue ... new beta

Thanks for the fast fix and beta.

What need to be improved is \reference because you can only use \at but not \in while for \textreference you can use both (look at the tables for one and two in my example).

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] 5+ messages in thread

* Re: Pagereference not working!?
  2012-04-07 13:16   ` Hans Hagen
  2012-04-07 15:09     ` Wolfgang Schuster
@ 2012-04-07 17:52     ` Verhaag, G.C.H.M.
  1 sibling, 0 replies; 5+ messages in thread
From: Verhaag, G.C.H.M. @ 2012-04-07 17:52 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 04/07/2012 03:16 PM, Hans Hagen wrote:
> On 7-4-2012 12:42, Wolfgang Schuster wrote:
>>
>> Am 07.04.2012 um 12:17 schrieb Verhaag, G.C.H.M.:
>>
>>> Dear ConTeXt user's,
>>>
>>> Today I upgraded to the latest MkIV release 2012.04.06!
>>>
>>> I noticed that the \pagereference command is not working any more. 
>>> Page referencing between external documents isn't working either!
>>
>> There are indeed problems with the \reference, \textreference and 
>> \pagereference commands and \in and \at to show the values.
>
> some grouping issue ... new beta
>
> -----------------------------------------------------------------
>                                           Hans Hagen | PRAGMA ADE
>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
>                                              | www.pragma-pod.nl
> -----------------------------------------------------------------
>
Hans, thanks for the quick repair! Wolfgang, thanks for the nice 
reference examples!

Regards,
Gerard Verhaag
___________________________________________________________________________________
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] 5+ messages in thread

end of thread, other threads:[~2012-04-07 17:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-07 10:17 Pagereference not working!? Verhaag, G.C.H.M.
2012-04-07 10:42 ` Wolfgang Schuster
2012-04-07 13:16   ` Hans Hagen
2012-04-07 15:09     ` Wolfgang Schuster
2012-04-07 17:52     ` Verhaag, G.C.H.M.

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