[NTG-context] [***SPAM***] Re: Symbols for footnotes not working

2013-03-29 Thread Wolfgang Schuster

Am 29.03.2013 um 10:07 schrieb hwit...@gmail.com:

 
 It didn't work.  Either with texexec or with context.
 
 Here is a simpler test case
  start
 % basic test to change footnotes bullet to a symbol
 % basice test to change footnotes bullet to a symbol
 %   \setupfootnotes[rule=off]   % had no affect
 
 \defineconversion[fnsym]{ \dagger,*,**,***}  % etc.
 
 \setupfootnotes[conversion=fnsym, numberconversion=fnsym]   % Doesn't 
 work
 \setupnotation[footnote][numberconversion=fnsym,alternative=text]   % Doesn't 
 work
 %  conversion=set fnsym  or conversion=fnsymdoes't work
 %  numberconversion=fnsym or numberconversion=set fnsym doesn't work
 
 \starttext
 This is a footnote\footnote{a fnote}\\
 And another for clarity\footnote{the 2nd footnote.}
 \stoptext
 
 end the above does not produce a dagger footnote bullet (only 
 std numbers)
 
 It should be a simple thing to do, but I've tried a lot of combinations..
 Any help would be appreciated.



1. {} ≠ [], see \defineconversion

2. To end a paragraph use empty lines, \\ is wrong

example
\defineconversion[fnsym][\m{\dagger},\m{*},\m{**},\m{***}]

\setupnotation[footnote][numberconversion=fnsym] % change footnote symbols
\setupnote[footnote][rule=off] % disbale the rule before the footnote block

\starttext

This is a footnote\footnote{a fnote}

And another for clarity\footnote{the 2nd footnote.}

\stoptext
/example

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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

[NTG-context] [***SPAM***] Re: Symbols for footnotes not working

2013-03-29 Thread d.henman

Thank you both, Wolfgang and Hans for helping me be able to use user specified 
footnote bulltes. 

I am using it in a table which I encapsulate with localfootnotes. I call
\setupnotation[footnote][numberconversion=fnsym] % change footnote symbols

after the startlocal, and it works in the table, but the use of symbols 
persists after teh stoplocalfootnotes is issued.  However if I undo, just 
before the end as

 \setupnotation[footnote][numberconversion=n]

then all works well and the counts carry on correctly.

Thank you.
___
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
___