[NTG-context] [***SPAM***] Indentation for beginner

2012-05-02 Thread hwitloc


I am putting together a needed resume and learning context at the same time.
What I want is or should be simple, but I am not familiar with which options to 
set.


I am using the following, because I don't want to use any margin for some 
forgotten reason, just text area.  I am currently using this: (abbreviated)


%
% relevant snippet
%
\definedescription[rsection][location=left,width=3.0cm,headstyle=\sc]


\rsection{Education} \startitemize[5,packed]  \item bozo the clown
  \item is here today.
  \stopitemize

\rsection{Work\\Experience} \startitemize[5,packed]
  \item  UCLA BoA
  \item LMU BSCS
  \stopitemize

...
%
% end snippet
%

The above is fine, except that I want the items to be level with the resume 
section header.  As it is now the items come out below the resume section 
description, like this:

  EDUCATION

   * bozo the clown
   * is here today

  WORK
  EXPERIENCE
   * UCLA BoA
   * LMU BSCS


-
%Whereas I want it to be like this:


  EDUCATION* bozo the clown
   * is here today

  WORK * UCLA BoA
  EXPERIENCE   * LMU BSCS

% above or below
 
  WORK 
  EXPERIENCE   * UCLA BoA
   * LMU BSCS

% 
In other words I want the first item of an itemization to line up with the 
resume section description header's first or last line.   I am thinking it 
might be to set someing in the  before, after, or command or to set maybe 
one to /nop out whatever
 is there currently.  I don't know how to find out what commands these default 
to, if any, but even if I knew at this point, I would still be stuck.   Though 
I'd like to know about that to.

Any advice on this would be appreciated of how to get this desired format would 
be much appreciated.

Regards,
 hwitloc
___
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
___


Re: [NTG-context] [***SPAM***] Indentation for beginner

2012-05-02 Thread Marco
On 2012-05-02 hwit...@gmail.com wrote:

 %Whereas I want it to be like this:
 
 
   EDUCATION* bozo the clown
* is here today
 
   WORK * UCLA BoA
   EXPERIENCE   * LMU BSCS
 
 In other words I want the first item of an itemization to line up with the
 resume section description header's first or last line.

\defineparagraphs [rpara] [n=2]
\setupparagraphs  [rpara] [1] [width=3cm, style=\sc]
\setupitemize [5, packed]

\starttext

\startrpara
Education
\nextrpara
\startitemize
\startitem bozo the clown \stopitem
\startitem is here today  \stopitem
\stopitemize
\stoprpara

\startrpara
Work\crlf Experience % or use \startlines … \stoplines
\nextrpara
\startitemize
\startitem UCLA BoA \stopitem
\startitem LMU BSCS \stopitem
\stopitemize
\stoprpara

\stoptext


___
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
___