ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* spacing problem with mvs sybols
@ 2008-02-01 11:13 Gour
  2008-02-01 11:53 ` Taco Hoekwater
  0 siblings, 1 reply; 5+ messages in thread
From: Gour @ 2008-02-01 11:13 UTC (permalink / raw)
  To: ntg-context


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

Hi!

I'm using muse for writing some astrological notes while studying and
noticed there is problem with spacing after using symbols from 'mvs'.

Here is the test file:

\usesymbols[mvs]
\setupsymbolset [astronomic]
\setupsymbolset [zodiac]

\starttext

This is Mesha \symbol[Aries] and this \symbol[Cancer] is Kataka. 
Let's see \symbol[Sun] too.

\stoptext


Am I doing something wrong here?

I tried with both mkii and mkiv, but the result is the same.

Sincerely,
Gour

[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 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] 5+ messages in thread

* Re: spacing problem with mvs sybols
  2008-02-01 11:13 spacing problem with mvs sybols Gour
@ 2008-02-01 11:53 ` Taco Hoekwater
  2008-02-01 13:17   ` Gour
  0 siblings, 1 reply; 5+ messages in thread
From: Taco Hoekwater @ 2008-02-01 11:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Gour wrote:
> Hi!
> 
> I'm using muse for writing some astrological notes while studying and
> noticed there is problem with spacing after using symbols from 'mvs'.
> 
> Here is the test file:
> 
> \usesymbols[mvs]
> \setupsymbolset [astronomic]
> \setupsymbolset [zodiac]
> 
> \starttext
> 
> This is Mesha \symbol[Aries] and this \symbol[Cancer] is Kataka. 
> Let's see \symbol[Sun] too.
> 
> \stoptext
> 
> 
> Am I doing something wrong here?

\symbol[] gobbles following spaces, because it also has a second
argument for the symbol set. Use one of these to stop it from
doing so:

   {\symbol[Sun]}
   \symbol{sun}
   \symbol[zodiac][Sun]

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


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

* Re: spacing problem with mvs sybols
  2008-02-01 11:53 ` Taco Hoekwater
@ 2008-02-01 13:17   ` Gour
  2008-02-01 14:15     ` Taco Hoekwater
  0 siblings, 1 reply; 5+ messages in thread
From: Gour @ 2008-02-01 13:17 UTC (permalink / raw)
  To: ntg-context


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

>>>>> "Taco" == Taco Hoekwater <taco@elvenkind.com> writes:

Hi Taco,

That was quick answer. Thanks a lot.

Taco> \symbol[] gobbles following spaces, because it also has a second
Taco> argument for the symbol set. Use one of these to stop it from
Taco> doing so:

The 2nd one looks optimal when symbol set is globally invoked.

It looks like wiki need some update...

Sincerely,
Gour


[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 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] 5+ messages in thread

* Re: spacing problem with mvs sybols
  2008-02-01 13:17   ` Gour
@ 2008-02-01 14:15     ` Taco Hoekwater
  2008-02-02  7:53       ` Gour
  0 siblings, 1 reply; 5+ messages in thread
From: Taco Hoekwater @ 2008-02-01 14:15 UTC (permalink / raw)
  To: mailing list for ConTeXt users



Gour wrote:
>>>>>> "Taco" == Taco Hoekwater <taco@elvenkind.com> writes:
> 
> Hi Taco,
> 
> That was quick answer. Thanks a lot.
> 
> Taco> \symbol[] gobbles following spaces, because it also has a second
> Taco> argument for the symbol set. Use one of these to stop it from
> Taco> doing so:
> 
> The 2nd one looks optimal when symbol set is globally invoked.

It *is* optional, that is it. Optionality implies space-eating.

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


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

* Re: spacing problem with mvs sybols
  2008-02-01 14:15     ` Taco Hoekwater
@ 2008-02-02  7:53       ` Gour
  0 siblings, 0 replies; 5+ messages in thread
From: Gour @ 2008-02-02  7:53 UTC (permalink / raw)
  To: ntg-context


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

>>>>> "Taco" == Taco Hoekwater <taco@elvenkind.com> writes:

Taco> It *is* optional, that is it. Optionality implies space-eating.

OK. Thanks. In the muse (emacs publishing) now I can write <aries> and it
expands as \symbol{Aries} in 'published' ConTeXt  document, so I can
configure tag-mechanism to do \symbol[zodiac][Aries] as well.

Otherwise, it would be much more convenient to just type 2nd option - in
lyx/latex one just types \Aries.

Sincerely,
Gour


[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 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] 5+ messages in thread

end of thread, other threads:[~2008-02-02  7:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-01 11:13 spacing problem with mvs sybols Gour
2008-02-01 11:53 ` Taco Hoekwater
2008-02-01 13:17   ` Gour
2008-02-01 14:15     ` Taco Hoekwater
2008-02-02  7:53       ` Gour

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