ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Wolfgang Schuster <wolfgang.schuster.lists@gmail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: styling individual parts of ToC entry
Date: Sat, 5 Sep 2020 11:16:08 +0200	[thread overview]
Message-ID: <433fcd16-6e58-3eef-d8e3-004c99e3d6e5@gmail.com> (raw)
In-Reply-To: <b7f42ead-ab57-78ce-f17c-202b5edc7d46@gmail.com>

jbf schrieb am 05.09.2020 um 03:35:
> Now that with Hraban's invaluable assistance I am able to include title, 
> subtitle, author as and when necessary in the ToC and put them on the 
> same line if I need to, I have two questions that I have not found a 
> satisfactory solution to after playing around with various possibilities.
> 
> I need:
> 
> (1) the author's names lined up vertically throughout the ToC, and
> 
> (2) the first part of the entry (e.g. Foreword) to be bold, but the 
> author name to be regular text.
> 
> An adjusted version of Hraban's setup can show what I have tried by way 
> of example:
> 
> %----------------
> 
> \define[1]\TitleTocEntry{%
>    #1\hskip 1cm% title
>     \structurelistuservariable{author}%
>    }
> 
> \setuplist[title][textstyle=bold,
>    textcommand=\TitleTocEntry,
> ]
> 
> %---------------
> 
> /Question 1:/ /How to get the two author names to line up vertically./ 
> Given that I have both a Foreword and a Preface, I am using \title for 
> these. And both have separate authors. The titles will be simply 
> 'Foreword' and 'Preface', obviously.
> 
> *Foreword     Author name*
> 
> *Preface    Author name*
> 
> I am using \hskip 1cm to separate the authors' names from either of 
> those two words. But this does not give me the kind of exact positioning 
> I need to get the two author names directly underneath each other in the 
> list. I have tried various alternatives to \hskip, but none of them can 
> give me the correct proportional distance. The distance is obviously 
> being controlled by the fact that 'Foreword' is 8 characters and 
> 'Preface' is 7. Is what I want only obtainable with a table setup?
> 
> The issue might or might not be more complicated when I get to main 
> chapters, where the author names need to line up with the Foreword and 
> Preface author names as well. There will be, e.g.
> 
> Chapter One  Title
> 
>                         Author name
> //
> 
> /Question 2:/ /How to independently get Foreword and Preface to be bold, 
> but the authors' names to be regular./ \setuplist offers me options like 
> textstyle, pagestyle, numberstyle, but they apply to everything (both 
> Foreword/Preface and Authors' name are bold). I thought perhaps I could 
> control it from within the document, e.g.
> 
> \starttitle[title={\ss\bf Foreword}][author={A. Uthor}]
> 
> But that does the same - both Foreword and A. Uthor end up bold. And 
> besides, I also want to style the ToC independently of the heads if I can.
> 
> The wiki and various manuals do offer various tips on modifying the ToC, 
> but I cannot find anything regarding the two questions above - not yet, 
> anyway. If someone knows where, please point me to it.

\define[3]\ChapterListCommand
   {\hbox\bgroup
      \hbox to 3cm{\currentlistsymbol\hss}% number + labeltext
      \vtop\bgroup
        \hsize\dimexpr\makeupwidth-3cm\relax
        \doifsomething{\rawstructurelistuservariable{year}}
          {{\it\structurelistuservariable{year}}\crlf}%
        \currentlistentrytitle % title
        \doifsomething{\rawstructurelistuservariable{year}}
          {\crlf{\bf\structurelistuservariable{author}}}%
        \hfill\currentlistentrypagenumber % pagenumber
      \egroup
    \egroup}

\setuplist
   [chapter]
   [label=chapter,
    alternative=command,
    command=\ChapterListCommand]

\setuplabeltext
   [en]
   [chapter=Chapter ]

\starttext

\completecontent

\startchapter [title={Chapter title}] [author={Author 
Name},year={1980--2000}]
\unknown
\stopchapter

\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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

  parent reply	other threads:[~2020-09-05  9:16 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-05  1:35 jbf
2020-09-05  8:30 ` Henning Hraban Ramm
2020-09-05  9:16 ` Wolfgang Schuster [this message]
2020-09-06  0:03   ` jbf
2020-09-06  7:36     ` Wolfgang Schuster
2020-09-06 23:31       ` jbf
2020-09-07  6:57         ` Wolfgang Schuster
2020-09-09  6:04           ` jbf
2020-09-09  7:10             ` Wolfgang Schuster
2020-09-09  9:39               ` jbf

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=433fcd16-6e58-3eef-d8e3-004c99e3d6e5@gmail.com \
    --to=wolfgang.schuster.lists@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).