emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Writing raw [1], *aa*, without being interpreted
@ 2007-08-18 10:19 Daniel Clemente
  2007-08-20  4:34 ` Renzo Been
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Daniel Clemente @ 2007-08-18 10:19 UTC (permalink / raw)
  To: emacs-orgmode

Hi,
  in a file I would like to write following line:
----
 „Writing [1] you can create a footnote."
----

  But then [1] is interpreted as a footnote. I have tried escaping it:
\[1\] =[1]= \\[1\\] @<span>[1]@</span> etc. but it doesn't work; it's
always interpreted as a footnote.
  How can these 3 characters [1] be written on a file?

  Of course, disabling footnotes (#+OPTION f:nil) is not a solution
since I do want to use them eventually.

  I expected to find this information in the manual, page 75 (example:
point 11.5.4), but there's nothing about it. I think it's missing a
type of <literal> element:  <literal>this goes [1] *aa* /aa/
unprocessed.</literal>

  Any idea?

  Greetings,
Daniel

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

* Re: Writing raw [1], *aa*, without being interpreted
  2007-08-18 10:19 Writing raw [1], *aa*, without being interpreted Daniel Clemente
@ 2007-08-20  4:34 ` Renzo Been
  2007-08-21  3:00 ` Carsten Dominik
  2007-11-13 11:12 ` Carsten Dominik
  2 siblings, 0 replies; 6+ messages in thread
From: Renzo Been @ 2007-08-20  4:34 UTC (permalink / raw)
  To: emacs-orgmode

Daniel Clemente <n142857 <at> gmail.com> writes:

> 
> Hi,
>   in a file I would like to write following line:
> ----
>  „Writing [1] you can create a footnote."
> ----

,-----
| The only two ways I found to write the brackets
| in the right way would be to set the line as
| fixed-width font. Like so:
| 
| :Writing [1] you can create a footnote.
| 
| Or only set the brackets themselves as
| fixed-width font. Like so:
| 
| Writing @<code>[@</code>1@<code>]@</code> you can create a footnote.
|
| Ciao, Renzo
`-----

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

* Re: Writing raw [1], *aa*, without being interpreted
  2007-08-18 10:19 Writing raw [1], *aa*, without being interpreted Daniel Clemente
  2007-08-20  4:34 ` Renzo Been
@ 2007-08-21  3:00 ` Carsten Dominik
  2007-08-21  3:25   ` Xiao-Yong Jin
  2007-08-21  8:36   ` Daniel Clemente
  2007-11-13 11:12 ` Carsten Dominik
  2 siblings, 2 replies; 6+ messages in thread
From: Carsten Dominik @ 2007-08-21  3:00 UTC (permalink / raw)
  To: Daniel Clemente; +Cc: emacs-orgmode

Hi Daniel,

in the next version, also something like

With
#+HTML: [1]
#+ASCII: [1]
#+LaTeX: [1]
you can make a footnote.

will work.  Silly, but still does the trick.

- Carsten

On Aug 18, 2007, at 12:19, Daniel Clemente wrote:

> Hi,
>   in a file I would like to write following line:
> ----
>  „Writing [1] you can create a footnote."
> ----
>
>   But then [1] is interpreted as a footnote. I have tried escaping it:
> \[1\] =[1]= \\[1\\] @<span>[1]@</span> etc. but it doesn't work; it's
> always interpreted as a footnote.
>   How can these 3 characters [1] be written on a file?
>
>   Of course, disabling footnotes (#+OPTION f:nil) is not a solution
> since I do want to use them eventually.
>
>   I expected to find this information in the manual, page 75 (example:
> point 11.5.4), but there's nothing about it. I think it's missing a
> type of <literal> element:  <literal>this goes [1] *aa* /aa/
> unprocessed.</literal>
>
>   Any idea?
>
>   Greetings,
> Daniel
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>

--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477

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

* Re: Writing raw [1], *aa*, without being interpreted
  2007-08-21  3:00 ` Carsten Dominik
@ 2007-08-21  3:25   ` Xiao-Yong Jin
  2007-08-21  8:36   ` Daniel Clemente
  1 sibling, 0 replies; 6+ messages in thread
From: Xiao-Yong Jin @ 2007-08-21  3:25 UTC (permalink / raw)
  To: emacs-orgmode

Carsten Dominik <dominik@science.uva.nl> writes:

> Hi Daniel,
>
> in the next version, also something like
>
> With
> #+HTML: [1]
> #+ASCII: [1]
> #+LaTeX: [1]
> you can make a footnote.
>
> will work.  Silly, but still does the trick.
>
> - Carsten

Perhaps surrounding with `=' like this `=[1]=' should work?

- Xiao-Yong

Sorry, Carsten, once again I forgot to send to this list.
-- 
    c/*    __o/*
    <\     * (__
    */\      <

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

* Re: Writing raw [1], *aa*, without being interpreted
  2007-08-21  3:00 ` Carsten Dominik
  2007-08-21  3:25   ` Xiao-Yong Jin
@ 2007-08-21  8:36   ` Daniel Clemente
  1 sibling, 0 replies; 6+ messages in thread
From: Daniel Clemente @ 2007-08-21  8:36 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

   Hi,
   the problem is: I don't want to use fixed font or any special
formatting for the [1]; I want that the [1] is integrated normally in
the text.
   This applies to all Org-mode syntax. Ex: /text/, *text*, ...
   Therefore we need something to avoid interpreting the Org-mode
syntax. Maybe escape manually a caracter: \[1], maybe a block:
\{[1]\}, maybe a null token inside the interpreted string:
[\don't_interpret{}1], ...

-- Daniel.

2007/8/21, Carsten Dominik <dominik@science.uva.nl>:
> Hi Daniel,
>
> in the next version, also something like
>
> With
> #+HTML: [1]
> #+ASCII: [1]
> #+LaTeX: [1]
> you can make a footnote.
>
> will work.  Silly, but still does the trick.
>
> - Carsten
>
> On Aug 18, 2007, at 12:19, Daniel Clemente wrote:
>
> > Hi,
> >   in a file I would like to write following line:
> > ----
> >  „Writing [1] you can create a footnote."
> > ----
> >
> >   But then [1] is interpreted as a footnote. I have tried escaping it:
> > \[1\] =[1]= \\[1\\] @<span>[1]@</span> etc. but it doesn't work; it's
> > always interpreted as a footnote.
> >   How can these 3 characters [1] be written on a file?
> >
> >   Of course, disabling footnotes (#+OPTION f:nil) is not a solution
> > since I do want to use them eventually.
> >
> >   I expected to find this information in the manual, page 75 (example:
> > point 11.5.4), but there's nothing about it. I think it's missing a
> > type of <literal> element:  <literal>this goes [1] *aa* /aa/
> > unprocessed.</literal>
> >
> >   Any idea?
> >
> >   Greetings,
> > Daniel
> >
> >
> > _______________________________________________
> > Emacs-orgmode mailing list
> > Emacs-orgmode@gnu.org
> > http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> >
> >
>
> --
> Carsten Dominik
> Sterrenkundig Instituut "Anton Pannekoek"
> Universiteit van Amsterdam
> Kruislaan 403
> NL-1098SJ Amsterdam
> phone: +31 20 525 7477
>
>

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

* Re: Writing raw [1], *aa*, without being interpreted
  2007-08-18 10:19 Writing raw [1], *aa*, without being interpreted Daniel Clemente
  2007-08-20  4:34 ` Renzo Been
  2007-08-21  3:00 ` Carsten Dominik
@ 2007-11-13 11:12 ` Carsten Dominik
  2 siblings, 0 replies; 6+ messages in thread
From: Carsten Dominik @ 2007-11-13 11:12 UTC (permalink / raw)
  To: Daniel Clemente; +Cc: emacs-orgmode

There will be a solution for this in 5.14.

- Carsten

On  18Aug2007, at 12:19 PM, Daniel Clemente wrote:

> Hi,
>   in a file I would like to write following line:
> ----
>  „Writing [1] you can create a footnote."
> ----
>
>   But then [1] is interpreted as a footnote. I have tried escaping it:
> \[1\] =[1]= \\[1\\] @<span>[1]@</span> etc. but it doesn't work; it's
> always interpreted as a footnote.
>   How can these 3 characters [1] be written on a file?
>
>   Of course, disabling footnotes (#+OPTION f:nil) is not a solution
> since I do want to use them eventually.
>
>   I expected to find this information in the manual, page 75 (example:
> point 11.5.4), but there's nothing about it. I think it's missing a
> type of <literal> element:  <literal>this goes [1] *aa* /aa/
> unprocessed.</literal>
>
>   Any idea?
>
>   Greetings,
> Daniel
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

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

end of thread, other threads:[~2007-11-13 11:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-08-18 10:19 Writing raw [1], *aa*, without being interpreted Daniel Clemente
2007-08-20  4:34 ` Renzo Been
2007-08-21  3:00 ` Carsten Dominik
2007-08-21  3:25   ` Xiao-Yong Jin
2007-08-21  8:36   ` Daniel Clemente
2007-11-13 11:12 ` Carsten Dominik

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