ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: <josephcanedo@gmail.com>
To: "ntg-context@ntg.nl" <ntg-context@ntg.nl>
Subject: Re:  \setfirstline for headings/titles ?
Date: Thu, 29 Oct 2015 10:35:17 +0000	[thread overview]
Message-ID: <094d15ac7cbc4f1284002f50f8bf7d1b@gmail.com> (raw)
In-Reply-To: <5dbdb018f26e4a61a0ac528959c69ca7@gmail.com>


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

Came up with some solution using lua, probably not the most elegant one but seems to work. Attached below in case it’s of any interest for anyone.


\setupheads[
  align=center]


\startluacode
  userdata = userdata or {}


  userdata.test = function(n)
     local breakline = n:find([[\\]])
     local modified
     if breakline then
        modified = [[{\tfa ]] .. n:sub(1, breakline + 1) .. '}' .. n:sub(breakline + 2)
     else
        modified = [[{\tfa ]] .. n .. '}'
     end
     context(modified)
  end


\stopluacode


\define[1]\MyCmd{\ctxlua{userdata.test('\luaescapestring{#1}')}}


\setuphead[subject][style=\tf,
  deeptextcommand=\MyCmd]


\starttext


\startsubject[title={A very very very long title for subject\\
we know will not fit in single line of output but\\
 A very very very long title for subject we know will not fit\\
 in single line of output}]


Some text.


\stoptext





From: josephcanedo@gmail.com
Sent: ‎Wednesday‎, ‎October‎ ‎28‎, ‎2015 ‎7‎:‎19‎ ‎PM
To: ntg-context@ntg.nl





Hello all,




Perhaps a more meaningful example, actually I explicitly break lines Inside title text.




\setuphead[subject][align=center]




\starttext




\startsubject[title={First title line\\ \tf eventual second line}] % second line same size as normal text Howto ?




Some text here




\stopsubject




\stoptext






I tried with \tf but it does not change the size of text in the title after it. (In LaTeX I used \normalsize)




Is there any solution that would allow to type:




\startsubject[title={First title line\\ eventual second line}] 




and output second line in smaller text than the first one (without adding any font modifier in the title if possible) ?




Many thanks for any help

Best regards




Joseph



From: josephcanedo@gmail.com
Sent: ‎Tuesday‎, ‎October‎ ‎27‎, ‎2015 ‎1‎:‎29‎ ‎PM
To: ntg-context@ntg.nl





Dear all,




Still playing with \setfirstline, I was wondering how to apply it for headings as well ? Naive sample below does not work for the subject title, most probably because headings/titles have different processing than normal paragraphs.




\definecolumnset[TwoColumns][n=2]




\definefirstline[bbigline][alternative=line,
  style=\tfa]




\starttext




\startcolumnset [TwoColumns]




\startsubject[title={\setfirstline[bbigline] A very very very long title for subject we know will not fit in single line of output}] % first line with different style as in the text below ?




\setfirstline[bbigline] Some paragraph content here. First line should be printed bigger than rest of lines.




\stopsubject




\stopcolumnset




\stoptext




Thanks a lot,

Best regards




Joseph Canedo

[-- Attachment #1.2: Type: text/html, Size: 6163 bytes --]

[-- Attachment #2: 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
___________________________________________________________________________________

      reply	other threads:[~2015-10-29 10:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-27 12:29 josephcanedo
2015-10-28 18:19 ` josephcanedo
2015-10-29 10:35   ` josephcanedo [this message]

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=094d15ac7cbc4f1284002f50f8bf7d1b@gmail.com \
    --to=josephcanedo@gmail.com \
    --cc=ntg-context@ntg.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).