Re: [NTG-context] What is the command to define the behavior of \goto?

2008-11-23 Thread Aditya Mahajan
On Sun, 23 Nov 2008, Yue Wang wrote:

 Hi:

 \setupinteraction[style=] % default is style=bold


 Thank you, Aditya! Previously I was searching command like setupgoto
 or some stuffs like that:(
 btw, how to link to the specific position instead of go to that page?
 if i point to Equation 12, my context document will only flow to the
 page which equation 12 is in, but not go to the equation
 automatically. But in my LaTeX file, it will if I use hyperref
 package.

\placeformula[eq:pythagoras]
\startformula
  a^2 + b^2 = c^2
\stopformula

See \in {Equation}[eq:pythagoras] \unknown.

To refer to sections etc, you can use

\section[sec:test] {A test section}

In \in{Section}[sec:test] we \unknown. The name of that section was 
\at[sec:test].

This is called referencing in ConTeXt. You can search the excursion and 
the main manual for some more details.

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

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


Re: [NTG-context] font style, font case question

2008-11-23 Thread luigi scarso
On Sun, Nov 23, 2008 at 7:12 AM, Yue Wang [EMAIL PROTECTED] wrote:
 Hi,

 3. In a many OpenType fonts you could get small caps with
the smcp feature, to use it redefine the \sc command to
\def\sc{\groupedcommand{\setfontfeature{smallcaps}}{}}.

 I can enable a feature using the \setfontfeature, how can I disable a feature?
 like \setfontfeature{-smcp}?

 btw, how can I use lowercase numbers globally in MKII?
 Luigi gave me a link to the mailing list on this issue yesterday, but
 it is a broken link:(

 http://www.ntg.nl/pipermail/ntg-context
you can download **all ** mails
and search for what you need .

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

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


Re: [NTG-context] Setuphyphenmark is not working again

2008-11-23 Thread Wolfgang Schuster

Am 23.11.2008 um 07:10 schrieb Yue Wang:

 Hi, Hans:

 \setuphyphenmark[sign=-] is not working again, it still gives en-dash
 between ||.
 would you please have a check?

http://wiki.contextgarden.net/Composed_words

Wolfgang

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

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


Re: [NTG-context] startstandardmakeup and page numbering

2008-11-23 Thread Bart Wise
Works!

Thanks Hans.

Bart

On Saturday 22 November 2008 01:23:46 am Hans Hagen wrote:
 Bart C. Wise wrote:
  I use a standardmakeup to define a part page.  However, when I do so,
  the page counter does not get incremented.  Therefore, after every part,
  the page numbers are inaccurate.  Is there a way to keep the page counter
  incrementing on a standardmakeup?

 \startstandardmakeup[pagestate=start]


 -
Hans Hagen | PRAGMA ADE
Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | fax: 038 477 53 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  : https://foundry.supelec.fr/projects/contextrev/
 wiki : http://contextgarden.net
 ___


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

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


Re: [NTG-context] bug reporting

2008-11-23 Thread Hans Hagen
Peter Münster wrote:

 But it would be nice, to get some feedback on the tracker. There are a lot
 of issues just open for a long time. If nobody can provide a solution for
 an issue, it would be nice to get a status such as wontfix, or if it's
 just a matter of time, a target milestone would be helpful.

sure, however, it's hard to gove some estimated now; the focus on 
development is in mkiv and before we start patching or extending there 
some major changes have to happen (in a next release all structure 
related components will have been adapted and that alone will need some 
testing before extensions can take place)

Hans

-
   Hans Hagen | PRAGMA ADE
   Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: 038 477 53 69 | fax: 038 477 53 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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] What is the command to define the behavior of \goto?

2008-11-23 Thread Yue Wang
The mailing list blocked my mail because the attachment is too big:(
Ummm... I think we should increase the capacity ...
 Here is the original message:
I remove the test.pdf, but one can always compile it using the tex
file in the attachment.

On Sun, Nov 23, 2008 at 3:59 PM, Aditya Mahajan [EMAIL PROTECTED] wrote:
 On Sun, 23 Nov 2008, Yue Wang wrote:

 Hi:

 \setupinteraction[style=] % default is style=bold


 Thank you, Aditya! Previously I was searching command like setupgoto
 or some stuffs like that:(
 btw, how to link to the specific position instead of go to that page?
 if i point to Equation 12, my context document will only flow to the
 page which equation 12 is in, but not go to the equation
 automatically. But in my LaTeX file, it will if I use hyperref
 package.

 \placeformula[eq:pythagoras]
 \startformula
  a^2 + b^2 = c^2
 \stopformula

 See \in {Equation}[eq:pythagoras] \unknown.

 To refer to sections etc, you can use

 \section[sec:test] {A test section}

 In \in{Section}[sec:test] we \unknown. The name of that section was
 \at[sec:test].

 This is called referencing in ConTeXt. You can search the excursion and
 the main manual for some more details.

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



test.tex
Description: TeX document
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

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


Re: [NTG-context] bug reporting

2008-11-23 Thread Peter Münster
On Sat, Nov 22 2008, Mojca Miklavec wrote:

  What's the best to do with unanswered bug-reports / feature-requests on the
  mailing list:
  - reposting on the list
  - posting to the tracker on http://foundry.supelec.fr/projects/contexttest/
  - other?
 
  when urgent (showstopper): repost
  else: tracker
 
 But ConTeXt has a new tracker now: http://tracker.luatex.org

Oh! What does this mean exactly:
- Is the tracker on foundry.supelec.fr now obsolete?
- Should I move open items from foundry.supelec.fr to luatex.org?
- Is tracker.luatex.org only a temporary solution, or will it be used for a
  not too short time in the future?

Thanks, Peter

-- 
http://pmrb.free.fr/contact/

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

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


Re: [NTG-context] bug reporting

2008-11-23 Thread Hans Hagen
Peter Münster wrote:
 On Sat, Nov 22 2008, Mojca Miklavec wrote:
 
 What's the best to do with unanswered bug-reports / feature-requests on the
 mailing list:
 - reposting on the list
 - posting to the tracker on http://foundry.supelec.fr/projects/contexttest/
 - other?
 when urgent (showstopper): repost
 else: tracker
 But ConTeXt has a new tracker now: http://tracker.luatex.org
 
 Oh! What does this mean exactly:
 - Is the tracker on foundry.supelec.fr now obsolete?
 - Should I move open items from foundry.supelec.fr to luatex.org?
 - Is tracker.luatex.org only a temporary solution, or will it be used for a
   not too short time in the future?

please move the items .. we use the mantis tracker for both luatex and 
context; just a better tracker


-
   Hans Hagen | PRAGMA ADE
   Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: 038 477 53 69 | fax: 038 477 53 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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Fwd: What is the command to define the behavior of \goto?

2008-11-23 Thread Aditya Mahajan
On Sun, 23 Nov 2008, Yue Wang wrote:

 This is called referencing in ConTeXt. You can search the excursion and
 the main manual for some more details.

 still go to the page, not go to the specific place. see the attachment.

 what I want is the feature that can go to certain area in the pdf document 
 page.

Ah. The link is actually going to a specific place in a page, but the 
pdfviewer shows the entire page due to the default value of focus. It can 
be changed using

\setupinteraction[focus=standard]

 for example, in CTAN, there is a document typesetted in LaTeX (using
 hyperref package) called  A Survey of Free Math Fonts for TEX and
 LATEX, you can find it in CTAN/documentation/Free_Math_Font_Survey/.
 Go to page 1 and see Contents.  If I click  Core Postscript Fonts, it
 will not only go to page 8, but also place the title at the top of the
 reader window. Obviously this is different compared to the hyperlink
 feature in ConTeXt.

ConTeXt behaviour is not perfect in this regard. Sometimes the link jumps 
higher or lower than the actual section title. But I could never determine 
if it was the fault of the pdf viewer or ConTeXt.

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


[NTG-context] vertical alignment in footer

2008-11-23 Thread Zoho Vignochi
Hello:

I am a recent convert from LaTeX to conTeXt. kudos to all the developers! 
I have read through the wiki and as many tutorials/manuals as I can find.

My problem is that I have a footer which includes a logo. I would like 
all the elements in the footer to be vertically centred, where as now 
they are aligned along the bottom.

Here is my code:

\startsetups footer
\hfill
\pagenumber
\hfill
\llap{\externalfigure[logo]}
\stopsetups

Thanks,

Zoho

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

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


Re: [NTG-context] Fwd: What is the command to define the behavior of \goto?

2008-11-23 Thread Hans Hagen
Aditya Mahajan wrote:

 ConTeXt behaviour is not perfect in this regard. Sometimes the link jumps 
 higher or lower than the actual section title. But I could never determine 
 if it was the fault of the pdf viewer or ConTeXt.

annotation areas in pdf are not part of the stream but take place on in 
a separate coordination space in pdf; in principle there is no specific 
target in the stream, just 'oon the page' and there are some 'view' 
options; much of this (and the trickery that can be used) is viewer 
dependent; for instance the pdf hack for following columns (threads) got 
different treatment in successive versions of acrobat so i gave up on it 
(apart from the fact that i hate inconsistent scaling when following 
hyperlinks)

i might take a look at what the latest possibilities are bit not before 
i start upgrading the backend (mkiv only)


-
   Hans Hagen | PRAGMA ADE
   Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: 038 477 53 69 | fax: 038 477 53 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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Setuphyphenmark is not working again

2008-11-23 Thread Yue Wang
Thank you, Wolfgang. but why not make it fully compatible with
previous versions?

On Sun, Nov 23, 2008 at 8:26 AM, Wolfgang Schuster
[EMAIL PROTECTED] wrote:

 Am 23.11.2008 um 07:10 schrieb Yue Wang:

 Hi, Hans:

 \setuphyphenmark[sign=-] is not working again, it still gives en-dash
 between ||.
 would you please have a check?

 http://wiki.contextgarden.net/Composed_words

 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
 ___

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