Re: [NTG-context] pararaph indent in footnote (again)

2005-07-21 Thread Alan Bowen


The latest version of ConTeXt (ver: 2005.07.20  fmt: 2005.7.21  int:  
english  mes: english) seems to have changed \setupindenting in such  
a way that


% for footnotes with paragraphs
\let\myfn\footnote
\def\footnote{\dosingleempty\mydofootnote}
\long\def\mydofootnote[#1]#2{%
  \iffirstargument
\myfn[#1]{\setupindenting[big]#2}%
  \else
\myfn{\setupindenting[big]#2}%
  \fi
}
which was suggested by Vít Zyka and used to work perfectly, now does  
not. All my footnote paragraphs are now set without an indent.


Changing \setupindenting to \indenting does not seem to work (though  
it does in the body text for normal paragraphing). What am I missing?


Alan


On Jun 23, 2005, at 4:59 AM, Vit Zyka wrote:

Try:


-
\setupindenting[small]

\let\footnoteO\footnote
\def\footnote{\dosingleempty\mydofootnote}
\long\def\mydofootnote[#1]#2{%
  \iffirstargument
\footnoteO[#1]{\setupindenting[small]#2}%
  \else
\footnoteO{\setupindenting[small]#2}%
  \fi
}
\def\SomePars{\dorecurse5{\dorecurse{50}{bla }\par}}
\starttext
  \SomePars bla\footnote{\SomePars}
\stoptext
--

cheers
vit


--
===
Ing. Vít Zýka, Ph.D. TYPOkvítek

database publishing  databazove publikovani
data maintaining and typesetting in typographic quality
priprava dat a jejich sazba v typograficke kvalite

tel.: (+420) 777 198 189 www: http://typokvitek.com
===

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



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


Re: [NTG-context] pararaph indent in footnote

2005-06-23 Thread Vit Zyka

Alan Bowen wrote:

Peter—

On further testing, I see that while I now have indented paragraphs  in 
my footnotes, I no longer have the ability to name and cross- reference 
them. \footnote{footnote text} works well, but \footnote [name]{footnote 
text} now seems broken.


Alan


On Wed, 22 Jun 2005, Alan Bowen wrote:




My immediate problem, however, is the paragraph indent in
footnotes that have more than one paragraph.




I don't know better, but this works:

\setupindenting[small]
\let\footnoteO\footnote
\long\def\footnote#1{\footnoteO{\setupindenting[small]#1}}
%% or
%\long\def\footnote#1{\footnoteO{\setupindenting[small]\indent#1}}
\def\SomePars{\dorecurse5{\dorecurse{50}{bla }\par}}
\starttext
\SomePars bla\footnote{\SomePars}
\stoptext


Try:

-
\setupindenting[small]

\let\footnoteO\footnote
\def\footnote{\dosingleempty\mydofootnote}
\long\def\mydofootnote[#1]#2{%
  \iffirstargument
\footnoteO[#1]{\setupindenting[small]#2}%
  \else
\footnoteO{\setupindenting[small]#2}%
  \fi
}
\def\SomePars{\dorecurse5{\dorecurse{50}{bla }\par}}
\starttext
  \SomePars bla\footnote{\SomePars}
\stoptext
--

cheers
vit


--
===
Ing. Vít Zýka, Ph.D. TYPOkvítek

database publishing  databazove publikovani
data maintaining and typesetting in typographic quality
priprava dat a jejich sazba v typograficke kvalite

tel.: (+420) 777 198 189 www: http://typokvitek.com
===

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


Re: [NTG-context] pararaph indent in footnote

2005-06-23 Thread Alan Bowen

Vit—

That’s got it nicely. Many thanks!

Best, Alan

On Jun 23, 2005, at 4:59 AM, Vit Zyka wrote:


Alan Bowen wrote:


Peter—
On further testing, I see that while I now have indented  
paragraphs  in my footnotes, I no longer have the ability to name  
and cross- reference them. \footnote{footnote text} works well,  
but \footnote [name]{footnote text} now seems broken.

Alan


On Wed, 22 Jun 2005, Alan Bowen wrote:





My immediate problem, however, is the paragraph indent in
footnotes that have more than one paragraph.





I don't know better, but this works:

\setupindenting[small]
\let\footnoteO\footnote
\long\def\footnote#1{\footnoteO{\setupindenting[small]#1}}
%% or
%\long\def\footnote#1{\footnoteO{\setupindenting[small]\indent#1}}
\def\SomePars{\dorecurse5{\dorecurse{50}{bla }\par}}
\starttext
\SomePars bla\footnote{\SomePars}
\stoptext



Try:

-
\setupindenting[small]

\let\footnoteO\footnote
\def\footnote{\dosingleempty\mydofootnote}
\long\def\mydofootnote[#1]#2{%
  \iffirstargument
\footnoteO[#1]{\setupindenting[small]#2}%
  \else
\footnoteO{\setupindenting[small]#2}%
  \fi
}
\def\SomePars{\dorecurse5{\dorecurse{50}{bla }\par}}
\starttext
  \SomePars bla\footnote{\SomePars}
\stoptext
--

cheers
vit


--
===
Ing. Vít Zýka, Ph.D. TYPOkvítek

database publishing  databazove publikovani
data maintaining and typesetting in typographic quality
priprava dat a jejich sazba v typograficke kvalite

tel.: (+420) 777 198 189 www: http://typokvitek.com
===

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



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


Re: [NTG-context] pararaph indent in footnote

2005-06-22 Thread Alan Bowen

Peter—

On further testing, I see that while I now have indented paragraphs  
in my footnotes, I no longer have the ability to name and cross- 
reference them. \footnote{footnote text} works well, but \footnote 
[name]{footnote text} now seems broken.


Alan


On Wed, 22 Jun 2005, Alan Bowen wrote:




My immediate problem, however, is the paragraph indent in
footnotes that have more than one paragraph.




I don't know better, but this works:

\setupindenting[small]
\let\footnoteO\footnote
\long\def\footnote#1{\footnoteO{\setupindenting[small]#1}}
%% or
%\long\def\footnote#1{\footnoteO{\setupindenting[small]\indent#1}}
\def\SomePars{\dorecurse5{\dorecurse{50}{bla }\par}}
\starttext
\SomePars bla\footnote{\SomePars}
\stoptext

Cheers, Peter

--
http://pmrb.free.fr/contact/
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context




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

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