Thank you all for these great answers.
God Bless.
- Joe
Hi Joe,
as an alternative to the solution proposed by Jan (turning off
footnote support entirely), you might also consider marking
that snippet as verbatim code, for exampleor maybe
* Tips
** Average bytes transferred
: perl -lane'$n+=$F[9]; ++$i; END{print $n/$i}' logfile
* Tips
** Average bytes transferred
#+begin_src shell#+end_src
perl -lane'$n+=$F[9]; ++$i; END{print $n/$i}' logfile
- Carsten
On Jan 18, 2010, at 10:50 PM, Joe Python wrote:
Orgmode Gurus,
How to remove the footnotes from my file.
I have some perl code in my notes which I like to export to html and tex.
----------------------< org file begins here>-------------------------------
* Tips** Average bytes transferred
perl -lane'$n+=$F[9]; ++$i; END{print $n/$i}' logfile
------------------------< org file ends here>--------------------------------
The F[9] above is interpreted as a Foot Note by org.
Is there a way to prevent it?
Please let me know.
Thank you,
Joe_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
- Carsten