ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Date with three-letter month
@ 2008-04-23 15:03 richard.stephens
  2008-04-23 16:10 ` Taco Hoekwater
  0 siblings, 1 reply; 13+ messages in thread
From: richard.stephens @ 2008-04-23 15:03 UTC (permalink / raw)
  To: ntg-context


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

Hello All,

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?

Thanks.

Richard.


[-- Attachment #1.2: Type: text/html, Size: 693 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] 13+ messages in thread

* Re: Date with three-letter month
  2008-04-23 15:03 Date with three-letter month richard.stephens
@ 2008-04-23 16:10 ` Taco Hoekwater
  0 siblings, 0 replies; 13+ messages in thread
From: Taco Hoekwater @ 2008-04-23 16:10 UTC (permalink / raw)
  To: mailing list for ConTeXt users



richard.stephens@converteam.com wrote:
> Hello All,
> 
> 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

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

* Re: Date with three-letter month
@ 2008-04-25  9:11 richard.stephens
  0 siblings, 0 replies; 13+ messages in thread
From: richard.stephens @ 2008-04-25  9:11 UTC (permalink / raw)
  To: ntg-context


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

I was so pleased with the result of Taco's and Aditya's suggestions, I 
have added them as examples to \date on texshow-web.

Richard

[-- Attachment #1.2: Type: text/html, Size: 183 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] 13+ messages in thread

* Re: Date with three-letter month
  2008-04-24 20:22           ` Hans Hagen
@ 2008-04-24 21:00             ` Arthur Reutenauer
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Reutenauer @ 2008-04-24 21:00 UTC (permalink / raw)
  To: Mailing list for ConTeXt users

> why not completely remove locatel then ... probably also faster

  There would certainly be many reasons to do so ... if anything,
because ConTeXt has its own “localization” system.

> btw, nilling the locale is done in mkiv:
> 
>     os.setlocale(nil,nil) -- useless feature and even dangerous in luatex
> 
> one of the first lines of lua i wrote -)

  I trust you did ;-)

	Arthur
___________________________________________________________________________________
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] 13+ messages in thread

* Re: Date with three-letter month
  2008-04-24 19:55         ` Taco Hoekwater
@ 2008-04-24 20:22           ` Hans Hagen
  2008-04-24 21:00             ` Arthur Reutenauer
  0 siblings, 1 reply; 13+ messages in thread
From: Hans Hagen @ 2008-04-24 20:22 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Taco Hoekwater wrote:
> Arthur Reutenauer wrote:
>>> Indeed, I've already seen that: when setting the locale to fr_FR.utf8,
>>> without resetting it to C just after the tex.print(), then I get this
>>> error:
>>> !luaTeX error (file /opt/TeX-live/texmf-dist/fonts/opentype/public/lm/lmroman12-regular.otf): Parsing CFF DICT failed. (error=-1)
>>>  ==> Fatal error occurred, no output PDF file produced!
>>   Interesting :-)  I suppose some of the strings are localized (like,
>> decimal points being replaced by decimal commas).  I already had that
>> when writing a small script to output PDF by hand.
> 
> Just about all string-to|from-float C functions (like strtod, scanf,
> atof, printf) and even the string-to|from-integer ones (strtol, scanf),
> are automatically influenced by the locale.  The same is true for all
> tests like isspace() and isalpha(). It is intended to be helpful,
> but as a programmer I simply hate it.

why not completely remove locatel then ... probably also faster

btw, nilling the locale is done in mkiv:

    os.setlocale(nil,nil) -- useless feature and even dangerous in luatex

one of the first lines of lua i wrote -)

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
___________________________________________________________________________________


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

* Re: Date with three-letter month
  2008-04-24 19:21       ` Arthur Reutenauer
@ 2008-04-24 19:55         ` Taco Hoekwater
  2008-04-24 20:22           ` Hans Hagen
  0 siblings, 1 reply; 13+ messages in thread
From: Taco Hoekwater @ 2008-04-24 19:55 UTC (permalink / raw)
  To: Mailing list for ConTeXt users

Arthur Reutenauer wrote:
>> Indeed, I've already seen that: when setting the locale to fr_FR.utf8,
>> without resetting it to C just after the tex.print(), then I get this
>> error:
>> !luaTeX error (file /opt/TeX-live/texmf-dist/fonts/opentype/public/lm/lmroman12-regular.otf): Parsing CFF DICT failed. (error=-1)
>>  ==> Fatal error occurred, no output PDF file produced!
> 
>   Interesting :-)  I suppose some of the strings are localized (like,
> decimal points being replaced by decimal commas).  I already had that
> when writing a small script to output PDF by hand.

Just about all string-to|from-float C functions (like strtod, scanf,
atof, printf) and even the string-to|from-integer ones (strtol, scanf),
are automatically influenced by the locale.  The same is true for all
tests like isspace() and isalpha(). It is intended to be helpful,
but as a programmer I simply hate it.

Cheers, 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] 13+ messages in thread

* Re: Date with three-letter month
  2008-04-24 18:53     ` Peter Münster
@ 2008-04-24 19:21       ` Arthur Reutenauer
  2008-04-24 19:55         ` Taco Hoekwater
  0 siblings, 1 reply; 13+ messages in thread
From: Arthur Reutenauer @ 2008-04-24 19:21 UTC (permalink / raw)
  To: Mailing list for ConTeXt users

> Indeed, I've already seen that: when setting the locale to fr_FR.utf8,
> without resetting it to C just after the tex.print(), then I get this
> error:
> !luaTeX error (file /opt/TeX-live/texmf-dist/fonts/opentype/public/lm/lmroman12-regular.otf): Parsing CFF DICT failed. (error=-1)
>  ==> Fatal error occurred, no output PDF file produced!

  Interesting :-)  I suppose some of the strings are localized (like,
decimal points being replaced by decimal commas).  I already had that
when writing a small script to output PDF by hand.

  To be precise, on Mac OS 10.5 I need “fr_FR.UTF-8” to reproduce this
behaviour, not “fr_FR.utf8” which looks a bit suspicious.  I have
already heard that the French version of some mainstream Linux
distribution (Ubuntu, I think) set locales to the absurd value
“français”, which was a problem not only because it was absolutely not
standard, but also because the system couldn't guess what encoding the
‘ç’ was in!

	Arthur
___________________________________________________________________________________
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] 13+ messages in thread

* Re: Date with three-letter month
  2008-04-24 18:36   ` Hans Hagen
@ 2008-04-24 18:53     ` Peter Münster
  2008-04-24 19:21       ` Arthur Reutenauer
  0 siblings, 1 reply; 13+ messages in thread
From: Peter Münster @ 2008-04-24 18:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Apr 24 2008, Hans Hagen wrote:
> Peter Münster wrote:
> 
> > % engine=luatex
> > \startluacode
> > function Monthshort(m)
> > --	os.setlocale("fr_FR.utf8") -- just for testing...
> > 	tex.print(os.date("%b", os.time({day = 10, month = m, year = 2000})))
> > 	os.setlocale("C")
> > end
> > \stopluacode
> > \starttext
> > \ctxlua{Monthshort(\the\normalmonth)}
> > \stoptext
> 
> beware with locales ... mkiv assumes no locale (basecilly kills it)

Indeed, I've already seen that: when setting the locale to fr_FR.utf8,
without resetting it to C just after the tex.print(), then I get this
error:
!luaTeX error (file /opt/TeX-live/texmf-dist/fonts/opentype/public/lm/lmroman12-regular.otf): Parsing CFF DICT failed. (error=-1)
 ==> Fatal error occurred, no output PDF file produced!

(That's why I wrote "just for testing"...)

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

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

* Re: Date with three-letter month
  2008-04-24 17:45 ` Peter Münster
@ 2008-04-24 18:36   ` Hans Hagen
  2008-04-24 18:53     ` Peter Münster
  0 siblings, 1 reply; 13+ messages in thread
From: Hans Hagen @ 2008-04-24 18:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Peter Münster wrote:

> % engine=luatex
> \startluacode
> function Monthshort(m)
> --	os.setlocale("fr_FR.utf8") -- just for testing...
> 	tex.print(os.date("%b", os.time({day = 10, month = m, year = 2000})))
> 	os.setlocale("C")
> end
> \stopluacode
> \starttext
> \ctxlua{Monthshort(\the\normalmonth)}
> \stoptext

beware with locales ... mkiv assumes no locale (basecilly kills it)

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
___________________________________________________________________________________


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

* Re: Date with three-letter month
  2008-04-24 13:15 richard.stephens
  2008-04-24 14:04 ` Aditya Mahajan
@ 2008-04-24 17:45 ` Peter Münster
  2008-04-24 18:36   ` Hans Hagen
  1 sibling, 1 reply; 13+ messages in thread
From: Peter Münster @ 2008-04-24 17:45 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Apr 24 2008, richard.stephens@converteam.com wrote:

> Thanks Taco.  This does the job.  All I need now is a version (\Monthshort 
> ??) which puts the first
> letter in uppercase, Jan , Feb, etc.

% engine=luatex
\startluacode
function Monthshort(m)
--	os.setlocale("fr_FR.utf8") -- just for testing...
	tex.print(os.date("%b", os.time({day = 10, month = m, year = 2000})))
	os.setlocale("C")
end
\stopluacode
\starttext
\ctxlua{Monthshort(\the\normalmonth)}
\stoptext

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


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

* Re: Date with three-letter month
@ 2008-04-24 15:38 richard.stephens
  0 siblings, 0 replies; 13+ messages in thread
From: richard.stephens @ 2008-04-24 15:38 UTC (permalink / raw)
  To: ntg-context


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

Aditya Mahajan wrote:
>See if this works (untested)
>
>\unprotect
>\setuplabeltext [\s!en] [\v!january  :\s!mnem=Jan.]
>\setuplabeltext [\s!en] [\v!february :\s!mnem=Feb.]
>\setuplabeltext [\s!en] [\v!march    :\s!mnem=Mar.]
>\setuplabeltext [\s!en] [\v!april    :\s!mnem=Apr.]
>\setuplabeltext [\s!en] [\v!may      :\s!mnem=May]
>\setuplabeltext [\s!en] [\v!june     :\s!mnem=Jun.]
>\setuplabeltext [\s!en] [\v!july     :\s!mnem=Jul.]
>\setuplabeltext [\s!en] [\v!august   :\s!mnem=Aug.]
>\setuplabeltext [\s!en] [\v!september:\s!mnem=Sep.]
>\setuplabeltext [\s!en] [\v!october  :\s!mnem=Oct.]
>\setuplabeltext [\s!en] [\v!november :\s!mnem=Nov.]
>\setuplabeltext [\s!en] [\v!december :\s!mnem=Dec.]
>\protect

That's fantastic!  Thanks for that.

Richard


[-- Attachment #1.2: Type: text/html, Size: 1128 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] 13+ messages in thread

* Re: Date with three-letter month
  2008-04-24 13:15 richard.stephens
@ 2008-04-24 14:04 ` Aditya Mahajan
  2008-04-24 17:45 ` Peter Münster
  1 sibling, 0 replies; 13+ messages in thread
From: Aditya Mahajan @ 2008-04-24 14:04 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, 24 Apr 2008, richard.stephens@converteam.com wrote:

>>> 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
>>
>> Best wishes,
>> Taco
>
> Thanks Taco.  This does the job.  All I need now is a version (\Monthshort
> ??) which puts the first
> letter in uppercase, Jan , Feb, etc.


See if this works (untested)

\unprotect
\setuplabeltext [\s!en] [\v!january  :\s!mnem=Jan.]
\setuplabeltext [\s!en] [\v!february :\s!mnem=Feb.]
\setuplabeltext [\s!en] [\v!march    :\s!mnem=Mar.]
\setuplabeltext [\s!en] [\v!april    :\s!mnem=Apr.]
\setuplabeltext [\s!en] [\v!may      :\s!mnem=May]
\setuplabeltext [\s!en] [\v!june     :\s!mnem=Jun.]
\setuplabeltext [\s!en] [\v!july     :\s!mnem=Jul.]
\setuplabeltext [\s!en] [\v!august   :\s!mnem=Aug.]
\setuplabeltext [\s!en] [\v!september:\s!mnem=Sep.]
\setuplabeltext [\s!en] [\v!october  :\s!mnem=Oct.]
\setuplabeltext [\s!en] [\v!november :\s!mnem=Nov.]
\setuplabeltext [\s!en] [\v!december :\s!mnem=Dec.]
\protect
___________________________________________________________________________________
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] 13+ messages in thread

* Re: Date with three-letter month
@ 2008-04-24 13:15 richard.stephens
  2008-04-24 14:04 ` Aditya Mahajan
  2008-04-24 17:45 ` Peter Münster
  0 siblings, 2 replies; 13+ messages in thread
From: richard.stephens @ 2008-04-24 13:15 UTC (permalink / raw)
  To: ntg-context


[-- Attachment #1.1: Type: text/plain, Size: 1357 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
>
>Best wishes,
>Taco

Thanks Taco.  This does the job.  All I need now is a version (\Monthshort 
??) which puts the first
letter in uppercase, Jan , Feb, etc.

Thanks,

Richard


________________
www.converteam.com
Converteam UK Ltd. Registration Number: 5571739 and Converteam Ltd. 
Registration Number: 2416188
Registered in England and Wales.
Registered office: Boughton Road, Rugby, Warwickshire, CV21 1BU.

CONFIDENTIALITY : This e-mail and any attachments are confidential and may 
be privileged. If  you are not a named recipient, please notify the sender 
immediately and do not disclose the contents to another person, use it for 
any purpose or store or copy the information in any medium.

Please consider the environment before printing this e-mail

[-- Attachment #1.2: Type: text/html, Size: 1791 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] 13+ messages in thread

end of thread, other threads:[~2008-04-25  9:11 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-23 15:03 Date with three-letter month richard.stephens
2008-04-23 16:10 ` Taco Hoekwater
2008-04-24 13:15 richard.stephens
2008-04-24 14:04 ` Aditya Mahajan
2008-04-24 17:45 ` Peter Münster
2008-04-24 18:36   ` Hans Hagen
2008-04-24 18:53     ` Peter Münster
2008-04-24 19:21       ` Arthur Reutenauer
2008-04-24 19:55         ` Taco Hoekwater
2008-04-24 20:22           ` Hans Hagen
2008-04-24 21:00             ` Arthur Reutenauer
2008-04-24 15:38 richard.stephens
2008-04-25  9:11 richard.stephens

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