Skip to content

Instantly share code, notes, and snippets.

@hubgit
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hubgit/9410408 to your computer and use it in GitHub Desktop.
Save hubgit/9410408 to your computer and use it in GitHub Desktop.
Example table footnotes
<table-wrap-foot>
<fn-group>
<!-- a heading for the footnotes - could perhaps be a title element in table-wrap-foot? -->
<fn id="table-1-fn">
<!-- ^ id for the footnotes section - should perhaps be on the fn-group, or table-wrap-foot? -->
<p>
<bold>Notes.</bold>
</p>
</fn>
<!-- a simple footnote -->
<fn id="table-1-fn-1">
<label>#</label>
<p>significant <italic>P</italic> value &lt; 0.05</p>
</fn>
<!-- a citation; perhaps better left as an xref on the label in the table, rather than a full named citation in a footnote -->
<fn id="table-1-fn-2">
<label>a</label>
<p><xref ref-type="bibr" rid="ref-45">Reichman, Bellairs &amp; Mulligan (2006)</xref>.</p>
</fn>
<!-- a definition list for terms in the table, inside <p> because <fn> has limited allowable contents -->
<fn id="table-1-fn-4">
<p>
<def-list>
<def-item>
<term>Conc</term>
<def>
<p>primer concentration (nM)</p>
</def>
</def-item>
<def-item>
<term>LOQ</term>
<def>
<p>limit of quantification</p>
</def>
</def-item>
</def-list>
</p>
</fn>
</fn-group>
</table-wrap-foot>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment