ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Skrinking distance between bullet and text in itemize
@ 2005-06-12 14:21 Nikolai Weibull
  2005-06-12 15:08 ` Steve Peter
  0 siblings, 1 reply; 5+ messages in thread
From: Nikolai Weibull @ 2005-06-12 14:21 UTC (permalink / raw)


I’d like to have the bullet appear closer to the text being itemized
inside a \startitemize.  I changed the symbol being used to a \cdot and
now the text appears to far away from the bullet itself.  Is there a way
to fix this?  I figured that altering distance, width, and/or factor
would have some effect, but albeit it remains unchanged.  The bullet
also appears inmargin, if that’s important.

Thanks,
        nikolai

-- 
Nikolai Weibull: now available free of charge at http://bitwi.se/!
Born in Chicago, IL USA; currently residing in Gothenburg, Sweden.
main(){printf(&linux["\021%six\012\0"],(linux)["have"]+"fun"-97);}

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

* Re: Skrinking distance between bullet and text in itemize
  2005-06-12 14:21 Skrinking distance between bullet and text in itemize Nikolai Weibull
@ 2005-06-12 15:08 ` Steve Peter
  2005-06-12 19:02   ` Nikolai Weibull
  0 siblings, 1 reply; 5+ messages in thread
From: Steve Peter @ 2005-06-12 15:08 UTC (permalink / raw)



On Jun 12, 2005, at 10:21 AM, Nikolai Weibull wrote:

> I’d like to have the bullet appear closer to the text being itemized
> inside a \startitemize.  I changed the symbol being used to a \cdot  
> and
> now the text appears to far away from the bullet itself.  Is there  
> a way
> to fix this?

Try something like

\startitemize[1 (or whatever symbol you want), 2*serried]

Vary the number before serried for different distances.

Steve

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

* Re: Skrinking distance between bullet and text in itemize
  2005-06-12 15:08 ` Steve Peter
@ 2005-06-12 19:02   ` Nikolai Weibull
  2005-06-12 22:45     ` Adam Lindsay
  0 siblings, 1 reply; 5+ messages in thread
From: Nikolai Weibull @ 2005-06-12 19:02 UTC (permalink / raw)


Steve Peter wrote:

> On Jun 12, 2005, at 10:21 AM, Nikolai Weibull wrote:

> > I’d like to have the bullet appear closer to the text being itemized
> > inside a \startitemize.  I changed the symbol being used to a \cdot
> > and now the text appears to far away from the bullet itself.  Is
> > there  a way to fix this?

> Try something like
> 
> \startitemize[1 (or whatever symbol you want), 2*serried]

I tried that, but the problem is that when one uses inmargin, this
doesn’t seem to work.  It seems that the interplay between width and
distance isn’t working as I would expect.  Anyway, thanks,
        nikolai

-- 
Nikolai Weibull: now available free of charge at http://bitwi.se/!
Born in Chicago, IL USA; currently residing in Gothenburg, Sweden.
main(){printf(&linux["\021%six\012\0"],(linux)["have"]+"fun"-97);}

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

* Re: Skrinking distance between bullet and text in itemize
  2005-06-12 19:02   ` Nikolai Weibull
@ 2005-06-12 22:45     ` Adam Lindsay
  2005-06-13  9:38       ` Nikolai Weibull
  0 siblings, 1 reply; 5+ messages in thread
From: Adam Lindsay @ 2005-06-12 22:45 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 962 bytes --]

Nikolai Weibull said this at Sun, 12 Jun 2005 21:02:45 +0200:

>> \startitemize[1 (or whatever symbol you want), 2*serried]
>
>I tried that, but the problem is that when one uses inmargin, this
>doesn’t seem to work.  It seems that the interplay between width and
>distance isn’t working as I would expect.  Anyway, thanks,

If it's in the margin, then you want to vary the margindistance. Of
course, that'll interact with other items you might have in the margin.
I'm not seeing another way to do it, at the moment.

\setuplayout[margindistance=.5em]
\showframe
\startitemize[inmargin] 
\item test \item test \item test
\stopitemize

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Adam T. Lindsay, Computing Dept.     atl@comp.lancs.ac.uk
 Lancaster University, InfoLab21        +44(0)1524/510.514
 Lancaster, LA1 4WA, UK             Fax:+44(0)1524/510.492
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

[-- Attachment #2: Type: text/plain, Size: 139 bytes --]

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

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

* Re: Skrinking distance between bullet and text in itemize
  2005-06-12 22:45     ` Adam Lindsay
@ 2005-06-13  9:38       ` Nikolai Weibull
  0 siblings, 0 replies; 5+ messages in thread
From: Nikolai Weibull @ 2005-06-13  9:38 UTC (permalink / raw)


Adam Lindsay wrote:

> Nikolai Weibull said this at Sun, 12 Jun 2005 21:02:45 +0200:

> > > \startitemize[1 (or whatever symbol you want), 2*serried]

> > I tried that, but the problem is that when one uses inmargin, this
> > doesn’t seem to work.  It seems that the interplay between width and
> > distance isn’t working as I would expect.

> If it's in the margin, then you want to vary the margindistance. Of
> course, that'll interact with other items you might have in the margin.
> I'm not seeing another way to do it, at the moment.

Ah, OK.  That’s a bit harsh.  I’ve tried to figure out a way to simply
shift the item leftwards manually, but I haven’t been successful.

Thanks for the information, though,
        nikolai

-- 
Nikolai Weibull: now available free of charge at http://bitwi.se/!
Born in Chicago, IL USA; currently residing in Gothenburg, Sweden.
main(){printf(&linux["\021%six\012\0"],(linux)["have"]+"fun"-97);}

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

end of thread, other threads:[~2005-06-13  9:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-12 14:21 Skrinking distance between bullet and text in itemize Nikolai Weibull
2005-06-12 15:08 ` Steve Peter
2005-06-12 19:02   ` Nikolai Weibull
2005-06-12 22:45     ` Adam Lindsay
2005-06-13  9:38       ` Nikolai Weibull

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