<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.6000.16441" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hi,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I was wondering how to obtain footnotes in a 
particulat format (example, a valid HTML or RTF text).</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Currently, I am using the following method that 
gives me the raw footnote string:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>CStringArray Footnotes;</FONT></DIV>
<DIV><FONT color=#0000ff>
<P><FONT face=Verdana size=2>for</FONT></FONT><FONT face=Verdana size=2> (i1 = 
pModule-&gt;getEntryAttributes().begin(); i1 != 
pModule-&gt;getEntryAttributes().end(); i1++) </FONT></P>
<P><FONT size=2><FONT face=Verdana color=#0000ff>for</FONT><FONT face=Verdana> 
(i2 = i1-&gt;second.begin(); i2 != i1-&gt;second.end(); i2++) </FONT></FONT></P>
<P><FONT size=2><FONT face=Verdana color=#0000ff>for</FONT><FONT face=Verdana> 
(i3 = i2-&gt;second.begin(); i3 != i2-&gt;second.end(); i3++) </FONT></FONT></P>
<P><FONT face=Verdana size=2>{ </FONT></P>
<P><FONT face=Verdana size=2></FONT></P>
<P><FONT face=Verdana size=2>CString first = i3-&gt;first;</FONT></P>
<P><FONT face=Verdana size=2>CString second = i3-&gt;second;</FONT></P>
<P><FONT face=Verdana size=2>first.MakeLower();</FONT></P>
<P><FONT size=2><FONT face=Verdana><FONT color=#0000ff>if</FONT>(first == <FONT 
color=#800000>"body"</FONT>)&nbsp; Footnotes.Add(second</FONT><FONT 
face=Verdana>);</FONT></FONT></P>
<P><FONT face=Verdana size=2></FONT></P>
<P><FONT size=1><FONT size=2><FONT face=Verdana>} </FONT><FONT 
color=#008000><FONT face=Verdana>// end of i3 
iteration</FONT></P></FONT></FONT></FONT></DIV></BODY></HTML>