ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: "Mikael Persson" <mickep@gmail.com>
To: "mailing list for ConTeXt users" <ntg-context@ntg.nl>
Subject: Re: \indenting[next] and math => no vertical space before the formula
Date: Wed, 30 Apr 2008 09:24:46 +0200	[thread overview]
Message-ID: <d5fddde00804300024w6ada9d55sb355e6ad2fa928e@mail.gmail.com> (raw)
In-Reply-To: <alpine.DEB.1.00.0804290035550.4887@nqv-yncgbc>

On Tue, Apr 29, 2008 at 6:49 AM, Aditya Mahajan <adityam@umich.edu> wrote:
> On Mon, 28 Apr 2008, Mikael Persson wrote:
>
>  > Hello again,
>  >
>  > * snip *
>  >>
>  >>  I could reproduce the result and have also a fix but I don't know what
>  >>  the correct
>  >>  reults should be and other people like Aditya should decide if it makes sense
>  >>  to change the current behaviour.
>  >>
>  >>  \def\startdisplaymath
>  >>   {\ifgridsnapping
>  >>      \beforedisplayspace
>  >>      \snapmathtogrid\vbox
>  > * snip *
>  >>  Wolfgang
>  >
>  > This fix seems not to solve the problem entirely. With this fix
>  > applied, If one now put a formula inside an enumeration one gets
>  > "double" space before the formula. This is a test file that shows the
>  > problem:
>
>  This is basically because in enumerations indenting is set to never.
>
>  You can see the same affect with
>
>  \setupindenting[no]
>  \testtext
>
>  One possible fix is to add
>
>  indenting=(reset|next|first) %default is never
>
>  to the \setupenumeration command. For example
>
>
>  > \defineenumeration[example]
>  >        [text=Example,
>  >        location=serried,
>  >        width=fit,
>           indenting=reset, %%<<<---- Add This
>
> >        distance=0.5em,
>  >       way=bysection,
>  >        ]
>
>  Another is to change \startdisplaymath to
>
>
>  \def\startdisplaymath
>    {\ifgridsnapping
>       \beforedisplayspace
>       \snapmathtogrid\vbox
>
>       \bgroup
>       \informulatrue
>      %\forgetall % breaks side floats
>     \else
>       \bgroup
>       \parskip\formulaparskip % ! !
>       \informulatrue
>      %\forgetall % otherwise backgrounds fail
>       \ifdim\lastskip<\zeropoint\else
>         \par
>         \ifvmode \ifdim\parskip>\zeropoint\relax
>           \whitespace \vskip-\parskip % kind of forces and cancels again
>         \fi \fi
>       \fi
>       \doif\displaygridcorrection{-\v!top}{\kern-\strutht}% new, currently only option/default
>       \beforedisplayspace
>       \par
>       \ifvmode \ifdim\parskip>\zeropoint\relax \else
>
>        \ifindentfirstparagraph
>           \verticalstrut
>           \vskip-\struttotal
>           \vskip-\baselineskip
>         \fi\fi
>       \fi
>     \fi
>     $$\setdisplaydimensions
>     \setpredisplaysize\lastlinewidth
>     \startinnermath}
>
>  But this is getting ugly.
>
>  Aditya
>

Thank you Aditya, but I don't get that to work. Both with

ConTeXt  ver: 2007.04.03 13:01 MKII  fmt: 2008.4.24  int:
english/english (with the fix earlier in this thread)
and
ConTeXt  ver: 2007.09.28 16:52 MKII  fmt: 2008.4.24  int:
english/english (which is the one from new ubuntu, without the fix)

this fails with the following error msg:

%% Start error msg
! Illegal unit of measure (pt inserted).
<to be read again>
                   \chardef
\@@in:reset ...rue \parindent \zerocount \chardef
                                                  \indentingtoggle \zerocount
\next1 #1,->\docomplexsetupindentingB {#1}
                                          \doprocesscommaitem
\doprocesscommalist ...item \gobbleoneargument #1,
                                                  ]\relax \global \advance \...
<argument> ...ndenting ]\docomplexsetupindentingB
                                                  \checkeverypar \ifindentfi...

\firstofoneargument #1->#1

...
l.29 \testexpr
               % Too much space before the formula if the fix is applied,
?
%% Stop error msg

The file that gives that error is:

%% Begin file
\setupindenting[yes,small]
\indenting[next]

\def\testtext{This is just some text so we see better what happens.}

\def\testexpr{%
\par
\testtext
\startformula
f(x)= \sin(x)
\stopformula
\testtext
\par
}

\defineenumeration[example]
       [text=Example,
       location=serried,
       width=fit,
       indenting=reset,
       distance=0.5em,
       way=bysection,
       ]

\starttext
\testexpr % OK if fix is applied, otherwise to little space before the
formula
\startexample
\testexpr % Too much space before the formula if the fix is applied,
otherwise OK.
\stopexample

\stoptext
%% End file

Best regards, Micke P
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


  reply	other threads:[~2008-04-30  7:24 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-24 10:15 Mikael Persson
2008-04-24 11:29 ` Wolfgang Schuster
2008-04-24 14:27   ` Aditya Mahajan
2008-04-24 17:28     ` Hans Hagen
2008-04-24 18:37       ` Mikael Persson
2008-04-24 18:43         ` Hans Hagen
2008-04-24 19:14           ` Mikael Persson
2008-04-24 19:34             ` Hans Hagen
2008-04-28 18:17   ` Mikael Persson
2008-04-29  4:49     ` Aditya Mahajan
2008-04-30  7:24       ` Mikael Persson [this message]
2008-04-30  7:33         ` Wolfgang Schuster
2008-04-30  7:45           ` Mikael Persson
2008-04-30  8:54             ` Wolfgang Schuster
2008-04-30 17:02         ` Aditya Mahajan
2008-04-30 18:14           ` Mikael Persson

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=d5fddde00804300024w6ada9d55sb355e6ad2fa928e@mail.gmail.com \
    --to=mickep@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).