emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Removing footnotes
@ 2010-01-18 21:50 Joe Python
  2010-01-19  7:20 ` Jan Böcker
  2010-01-19 14:57 ` Carsten Dominik
  0 siblings, 2 replies; 4+ messages in thread
From: Joe Python @ 2010-01-18 21:50 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 523 bytes --]

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.

<emacs-orgmode@gnu.org>----------------------< 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

[-- Attachment #1.2: Type: text/html, Size: 626 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Removing footnotes
  2010-01-18 21:50 Removing footnotes Joe Python
@ 2010-01-19  7:20 ` Jan Böcker
  2010-01-19 14:57 ` Carsten Dominik
  1 sibling, 0 replies; 4+ messages in thread
From: Jan Böcker @ 2010-01-19  7:20 UTC (permalink / raw)
  To: Joe Python; +Cc: emacs-orgmode

> The F[9] above is interpreted as a Foot Note by org.
> Is there a way to prevent it?

Take a look at section 12.2 - Export Options in the Org manual.
The one you want is:

#+OPTIONS: f:nil


HTH, Jan

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Removing footnotes
  2010-01-18 21:50 Removing footnotes Joe Python
  2010-01-19  7:20 ` Jan Böcker
@ 2010-01-19 14:57 ` Carsten Dominik
  2010-01-19 16:07   ` Joe Python
  1 sibling, 1 reply; 4+ messages in thread
From: Carsten Dominik @ 2010-01-19 14:57 UTC (permalink / raw)
  To: Joe Python; +Cc: emacs-orgmode

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 example

    * Tips
    ** Average bytes transferred
    : perl -lane'$n+=$F[9]; ++$i; END{print $n/$i}' logfile


or maybe


    * Tips
    ** Average bytes transferred
    #+begin_src shell
    perl -lane'$n+=$F[9]; ++$i; END{print $n/$i}' logfile
    #+end_src

- 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
>
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Removing footnotes
  2010-01-19 14:57 ` Carsten Dominik
@ 2010-01-19 16:07   ` Joe Python
  0 siblings, 0 replies; 4+ messages in thread
From: Joe Python @ 2010-01-19 16:07 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 1459 bytes --]

Thank you all for these great answers.
God Bless.

- Joe

On Tue, Jan 19, 2010 at 9:57 AM, Carsten Dominik
<carsten.dominik@gmail.com>wrote:

> 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 example
>
>
>   * Tips
>   ** Average bytes transferred
>   : perl -lane'$n+=$F[9]; ++$i; END{print $n/$i}' logfile
>
>
> or maybe
>
>
>   * Tips
>   ** Average bytes transferred
>   #+begin_src shell
>
>   perl -lane'$n+=$F[9]; ++$i; END{print $n/$i}' logfile
>   #+end_src
>
> - 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
>>
>>
>>
>>

[-- Attachment #1.2: Type: text/html, Size: 2386 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-01-19 16:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-01-18 21:50 Removing footnotes Joe Python
2010-01-19  7:20 ` Jan Böcker
2010-01-19 14:57 ` Carsten Dominik
2010-01-19 16:07   ` Joe Python

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).