* references to arbitrary labels in org and export to latex
@ 2016-02-03 7:05 Christian Wittern
2016-02-03 7:50 ` Loris Bennett
2016-02-03 8:56 ` Michael Strey
0 siblings, 2 replies; 7+ messages in thread
From: Christian Wittern @ 2016-02-03 7:05 UTC (permalink / raw)
To: Org Mode Mailing List
Dear orgmoders,
I am writing a document with a lot of web references. I would like to
bundle them at the end in the same way this is usually done with
bibliographic references, but separately. To reference them in the text, I
tried someting like [[url:mandoku-en]] and I have a
#+LABEL: url:mandoku-en
at the place where the URL is. This does not work as expected and the
exporter complains about a missing link to url:mandoku. Does anybody have
an idea about how to solve this?
Christian
--
Christian Wittern, Kyoto
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: references to arbitrary labels in org and export to latex
2016-02-03 7:05 references to arbitrary labels in org and export to latex Christian Wittern
@ 2016-02-03 7:50 ` Loris Bennett
2016-02-05 9:46 ` Christian Wittern
2016-02-03 8:56 ` Michael Strey
1 sibling, 1 reply; 7+ messages in thread
From: Loris Bennett @ 2016-02-03 7:50 UTC (permalink / raw)
To: emacs-orgmode
Hi Christian,
Christian Wittern <cwittern@gmail.com> writes:
> Dear orgmoders,
>
> I am writing a document with a lot of web references. I would like to
> bundle them at the end in the same way this is usually done with
> bibliographic references, but separately. To reference them in the text, I
> tried someting like [[url:mandoku-en]] and I have a
> #+LABEL: url:mandoku-en
> at the place where the URL is. This does not work as expected and the
> exporter complains about a missing link to url:mandoku. Does anybody have
> an idea about how to solve this?
>
> Christian
This was discussed in the following thread:
https://lists.gnu.org/archive/html/emacs-orgmode/2015-02/msg00382.html
It seems you can't use 'url:mandoku-en' because of the colon, so you
would have to use something like 'url;mandoku-en' instead.
HTH
Loris
--
This signature is currently under construction.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: references to arbitrary labels in org and export to latex
2016-02-03 7:05 references to arbitrary labels in org and export to latex Christian Wittern
2016-02-03 7:50 ` Loris Bennett
@ 2016-02-03 8:56 ` Michael Strey
1 sibling, 0 replies; 7+ messages in thread
From: Michael Strey @ 2016-02-03 8:56 UTC (permalink / raw)
To: emacs-orgmode
On Mi, 2016-02-03 at 08:05, Christian Wittern wrote:
> I am writing a document with a lot of web references. I would like to
> bundle them at the end in the same way this is usually done with
> bibliographic references, but separately.
I would use the great org-ref package and handle the URLs like normal
bibliographic references in a biblatex .bib file with the entry type
'Online'.
Biblatex allows to have multiple bibliographies as described here:
http://texblog.org/2012/10/22/multiple-bibliographies-with-biblatex/
with
#+BEGIN_EXPORT latex
\printbibliography[title={Online references},type=online]
\printbibliography[title={Other references}, nottype=online]
#+END_EXPORT
Best regards
--
Michael Strey
http://www.strey.biz * https://twitter.com/michaelstrey
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: references to arbitrary labels in org and export to latex
2016-02-03 7:50 ` Loris Bennett
@ 2016-02-05 9:46 ` Christian Wittern
2016-02-05 12:40 ` Kaushal Modi
0 siblings, 1 reply; 7+ messages in thread
From: Christian Wittern @ 2016-02-05 9:46 UTC (permalink / raw)
To: emacs-orgmode
Hi Loris,
On 2016-02-03 16:50, Loris Bennett wrote:
> This was discussed in the following thread:
>
> https://lists.gnu.org/archive/html/emacs-orgmode/2015-02/msg00382.html
>
> It seems you can't use 'url:mandoku-en' because of the colon, so you
> would have to use something like 'url;mandoku-en' instead.
Yes, right, but it seems I still do not get the numbering I would like to
have, so I guess I will have to go with the Bibtex route after all.
Thanks anyway.
Christian
--
Christian Wittern, Kyoto
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: references to arbitrary labels in org and export to latex
2016-02-05 9:46 ` Christian Wittern
@ 2016-02-05 12:40 ` Kaushal Modi
2016-02-05 13:40 ` John Kitchin
0 siblings, 1 reply; 7+ messages in thread
From: Kaushal Modi @ 2016-02-05 12:40 UTC (permalink / raw)
To: Christian Wittern; +Cc: emacs-org list
[-- Attachment #1: Type: text/plain, Size: 343 bytes --]
Check out this emacs.SE QnA: http://emacs.stackexchange.com/q/594/115
With that solution I can neatly collect all the links at the bottom of the
org document, using markdown style link references.
That still would not give the bibliography style link references at the end
of the exported document that you are looking for.
--
Kaushal Modi
[-- Attachment #2: Type: text/html, Size: 469 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: references to arbitrary labels in org and export to latex
2016-02-05 12:40 ` Kaushal Modi
@ 2016-02-05 13:40 ` John Kitchin
2016-02-05 18:27 ` Kaushal Modi
0 siblings, 1 reply; 7+ messages in thread
From: John Kitchin @ 2016-02-05 13:40 UTC (permalink / raw)
To: Kaushal Modi; +Cc: Christian Wittern, emacs-org list
Could you use footnotes for this?
Kaushal Modi writes:
> Check out this emacs.SE QnA: http://emacs.stackexchange.com/q/594/115
>
> With that solution I can neatly collect all the links at the bottom of the
> org document, using markdown style link references.
>
> That still would not give the bibliography style link references at the end
> of the exported document that you are looking for.
--
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: references to arbitrary labels in org and export to latex
2016-02-05 13:40 ` John Kitchin
@ 2016-02-05 18:27 ` Kaushal Modi
0 siblings, 0 replies; 7+ messages in thread
From: Kaushal Modi @ 2016-02-05 18:27 UTC (permalink / raw)
To: John Kitchin; +Cc: Christian Wittern, emacs-org list
[-- Attachment #1: Type: text/plain, Size: 388 bytes --]
On Fri, Feb 5, 2016 at 8:40 AM John Kitchin <jkitchin@andrew.cmu.edu> wrote:
> Could you use footnotes for this?
>
>
I had to go with that custom solution on emacs.SE because I wanted the
links to be rendered just like [[link][description]], without plain-text
links in the footnotes. But I also needed a Footnotes-like convenience
where it is easy to edit all links in a central place.
[-- Attachment #2: Type: text/html, Size: 672 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-02-05 18:28 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-03 7:05 references to arbitrary labels in org and export to latex Christian Wittern
2016-02-03 7:50 ` Loris Bennett
2016-02-05 9:46 ` Christian Wittern
2016-02-05 12:40 ` Kaushal Modi
2016-02-05 13:40 ` John Kitchin
2016-02-05 18:27 ` Kaushal Modi
2016-02-03 8:56 ` Michael Strey
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).