ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Wolfgang Schuster <schuster.wolfgang@googlemail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Cc: Hans Hagen <pragma@wxs.nl>
Subject: Re: writing date with ordinal numbers (\enordinaldaynumber) in mkiv
Date: Thu, 29 Sep 2011 13:49:31 +0200	[thread overview]
Message-ID: <2577054C-6010-436D-BDDC-A87B2E666169@googlemail.com> (raw)
In-Reply-To: <CALBOmsYwRTKHmtHx0ZC_cixdeRk5gHiseyZ-vptRrj_TRpDtdw@mail.gmail.com>


Am 29.09.2011 um 13:22 schrieb Mojca Miklavec:

> On Thu, Sep 29, 2011 at 01:06, Wolfgang Schuster wrote:
>> 
>> Am 28.09.2011 um 23:58 schrieb Mojca Miklavec:
>> 
>>> Hello,
>>> 
>>> MKII contains a macro \enordinaldaynumber which I don't find in MKIV.
>>> My main question: how can I setup the date to display "23\high{rd}
>>> Sep, 2011"?
>> 
>> \starttext
>> 
>> \currentdate[day+,space,month,space,year]
> 
> Interesting, thank you. I was looking at exactly the right page, but
> overlooked the +. And how do you print "Sep", "sep" and "SEP"? Wiki
> reference for \date lists
>    \date[d=25,m=4,y=2008][day,~,{\monthshort\normalmonth},~,year] \par
>    \date[d=25,m=4,y=2008][day,~,{\MONTHSHORT\normalmonth},~,year]
> but that doesn't work for me.


You can use “month:mnem” and “m:mnem” for the abbreviations of the months but there is a bug in core-con.lua

function commands.currentdate(str,currentlanguage) -- j and jj obsolete
    local list = utilities.parsers.settings_to_array(str)
    local year, month, day = tex.year, tex.month, tex.day
    local auto = true
    for i=1,#list do
        local entry = list[i]
        local tag, plus = match(entry,"^([^%+:]+)(.*)$")
        local ordinal, mnemonic, whatordinal = false, false, nil
        if not tag then
            tag = entry
-       elseif plus == "+" or plus == "ord" then
-           ordinal = true
-       elseif plus == "mnem" then
+       elseif plus == "+" or plus == ":ord" then
+           ordinal = true
+       elseif plus == ":mnem" then
            mnemonic = true
        end
        ...
end

Even when you patch this you don’t get any output because context tries (in the example below) to use the label “August:mnem” but only the label “august:mnem” is defined.

\starttext

\date[d=1,m=8][day:ord,space,month,space,month:mnem]

\starttabulate[|Tl|l|]
\NC August      \EQ \labeltext{August}      \NC\NR
\NC August:mnem \EQ \labeltext{August:mnem} \NC\NR
\NC august:mnem \EQ \labeltext{august:mnem} \NC\NR
\stoptabulate

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


  reply	other threads:[~2011-09-29 11:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-28 21:58 Mojca Miklavec
2011-09-28 23:06 ` Wolfgang Schuster
2011-09-29 11:22   ` Mojca Miklavec
2011-09-29 11:49     ` Wolfgang Schuster [this message]
2011-10-01 12:57       ` Hans Hagen
2011-10-01 13:14         ` Wolfgang Schuster
2011-10-02 11:17           ` Hans Hagen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2577054C-6010-436D-BDDC-A87B2E666169@googlemail.com \
    --to=schuster.wolfgang@googlemail.com \
    --cc=ntg-context@ntg.nl \
    --cc=pragma@wxs.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).