Element fn = getFootnotesResource().getDocument().createElement("div");
fn.setClassName("fnDiv");
getFootnotesResource().getDocument().getBody().add(fn);
HyperlinkElement a = getCurrentResource().getDocument().createHyperlinkElement("a");
a.setClassName("fnLink");
a.setXRef(fn.getSelfRef());
a.add(noteCit.getTextContent());
dstElem.add(a);
Element noteId = getFootnotesResource().getDocument().createHyperlinkElement("p");
noteId.setClassName("Footnote");
noteId.add(noteCit.getTextContent() + ")");
fn.add(noteId);
HyperlinkElement ar = getFootnotesResource().getDocument().createHyperlinkElement("a");
// ar.setClassName("fnLink");
ar.setXRef(a.getSelfRef());
ar.add(" \u21B5");
// fn.add(ar);
OPSResource temp = getCurrentResource();
setCurrentResource(getFootnotesResource());
traverse((Node) getXpath().evaluate(".//text:note-body", e, XPathConstants.NODE), fn);