Questions tagged [footnotes]

An additional piece of information printed at the bottom of a page.

An additional piece of information printed at the bottom of a page.

153 questions
0
votes
1 answer

How to dynamically create footnote with itext?

I need to transform an XML file to a PDF. I choose iText and XML Worker to process this. The xml contains tags that I would like to use as footnotes in the final document. I read about the PdfPageEventHelper that I'm already using to set a header…
0
votes
3 answers

HtML Footnote appears behind an element

Newbie here I'm making a website that has 2 main sections: one larger section (section A) with 75% width, and another section (section B) with 25% width, appear side by side. Section A has several p tags with footnote inside, the only problem is…
0
votes
1 answer

Eclipse Plugin or else for coding footnote

I love the Manning In Action Series. One of appealing area is that the code listing inside the book always has a footnote where there is a detailed explanation by a reference number. See below the example: So I'm wondering if there is an Eclipse…
developer.cyrus
  • 903
  • 2
  • 7
  • 18
0
votes
1 answer

A C++ text editing component that handles footnotes?

After a cursory glance round and some thinking, the only way I can think of to create a footnoting editing component is several rich edit controls, though with this method there's many caveats. Does anyone know of any existing component which…
Rich
  • 1
0
votes
1 answer

Jekyll Kramdown Footnotes Not Parsing

I'm attempting to annotate a file with footnotes using Jekyll. My _config.yml file is set thusly: markdown: kramdown This is how I'm attempting to use the footnotes:

As trade-off talking rational economic people [^1], we are constantly making…

0
votes
1 answer

How to find footnote location in a paragraph in Microsoft Word using C#

Currently I retrieve footnote text in a paragraph using foreach (Microsoft.Office.Interop.Word.Paragraph para in doc.Paragraphs) { Microsoft.Office.Interop.Word.Range range = para.Range.Duplicate; string x =…
Arun
  • 1
  • 1
0
votes
0 answers

C# : Editing of footnotes in word 2007 using Microsoft.Office.Interop

Is it possible to edit the footnotes within a document and place them directly on the reference number using Microsoft.Office.Interop.Word. When i use the OpenXML the footnote reference is missing on some input files that is why im trying to make a…
0
votes
1 answer

XSL : make an HTML link before a XML tag/node

As I'm working on a special XSL for a TEI text, I do encounter a big problem. In TEI specifications, standard notes from a book are encoded like that (assuming that albatros is the word that, on a sheet of paper, would receive the note) :

— Cher…

DonRamiro
  • 51
  • 6
0
votes
1 answer

How to get FootnoteRefrence Id in OpenXML using C#

I'm having a OOXML document's Paragraph Element like this. Now i want the FootNoteRefrence id from this text programmatically using c#. Text From the document.xml
Mohamed Alikhan
  • 1,315
  • 11
  • 14
0
votes
1 answer

How can I remove italic and bold styling from all footnote references in an InDesign document using ExtendScript?

I'm trying to remove bold and italic styling from footnote references in an InDesign document using ExtendScript. By footnote references, I mean the little number that appears in the main text. That is, I want to strip the italic and boldness from…
Shawn
  • 10,931
  • 18
  • 81
  • 126
0
votes
1 answer

Same page link not working in Codeigniter

I have written my own blog let’s say at example.com. I’ m trying to use footnotes for my posts. So I have a post at the address: http://www.example.com/blog/2012/04/post-slug I use this code for the footnotes (produced by…
Kostas
  • 97
  • 1
  • 4
  • 14
-1
votes
1 answer

Table as a footnote in LaTeX (LEd + MikTex 2.8 + Windows XP)

I want to place a small 4x4 table as a footnote in a manuscript that I am preparing for an IEEE Journal. Has any one tried this before? How to do it? I haven't got any leads yet.
-1
votes
1 answer

Google Apps Script: How to jump forward and backward between footnote numbers?

I'm looking for a script which move the cursor, step by step (clicking on a "next button"), to each footnote superscripts in the text body? Your support will be well appreciate. Thanks. The answer in Can Google App Scripts access the location of…
Chris_toph
  • 17
  • 4
-1
votes
1 answer

Regex working in online tester (https://regexr.com/) but not in python/google colab

I am trying to capture the footnotes of the attached text. So, logic is that a footnote begins with a number on a newline (\n\d+\s) and ends with a number on a newline (\n\d+\s) or the word "Page". The logic seems to work on multiple online regular…
-1
votes
1 answer

Remove footnote

I have the following code: function myFunction() { DocumentApp.getActiveDocument() .getFootnotes() .forEach(f => f.removeFromParent()); } This removes all footnotes. I just want to remove the 2nd of two footnotes. Any thoughts?
1 2 3
10
11