# File lib/maruku/output/to_latex.rb, line 449
  def to_latex_footnote_reference
    id = self.footnote_id
    if f = @doc.footnotes[id]
      "\\footnote{#{f.children_to_latex.strip}} "
    else
      $stderr.puts "Could not find footnote '#{id}'"
    end
  end