emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* problem of path in using ox-bibtex
@ 2014-01-05  8:35 Joseph Vidal-Rosset
  2014-01-05 15:42 ` Julian Gehring
  0 siblings, 1 reply; 6+ messages in thread
From: Joseph Vidal-Rosset @ 2014-01-05  8:35 UTC (permalink / raw)
  To: emacs-orgmode list

[-- Attachment #1: Type: text/plain, Size: 806 bytes --]

Hello the list,

Is it possible to define a single and unique path by default when one use
ox-bibtex?

I meet the following problem. At the end of  an org file, in order to use
ox-bibtex to get bibliographical references , I have this line:

#+BIBLIOGRAPHY: references plain option:-a limit:t

It means that I need to have the file references.bib in the same folder of
this paper.org's . I have tried to write to give the path of the default
folder of my references.bib:

 #+BIBLIOGRAPHY: ~/Dropbox/Bibliographiers/references plain option:-a
limit:t

but  in this case biblatex2html fails.

It means that I have to copy the references.bib from folder to folder and I
do not like this solution.

I do not doubt that there is a better solution, but I do not see it.

Your help is welcome,

Best wishes,

Jo.

[-- Attachment #2: Type: text/html, Size: 1158 bytes --]

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

* Re: problem of path in using ox-bibtex
  2014-01-05  8:35 problem of path in using ox-bibtex Joseph Vidal-Rosset
@ 2014-01-05 15:42 ` Julian Gehring
  2014-01-06 10:19   ` Joseph Vidal-Rosset
  0 siblings, 1 reply; 6+ messages in thread
From: Julian Gehring @ 2014-01-05 15:42 UTC (permalink / raw)
  To: emacs-orgmode

Hi Joseph,

Have you tried to specify the full path without the expansion of '~' 
(i.e. replacing the "~" with "/home/USER/" or equivalent)?  At least, 
this seems to eliminate the error message of bibtex2html failing.

Best wishes
Julian


On 01/05/2014 09:35 AM, Joseph Vidal-Rosset wrote:
> Hello the list,
>
> Is it possible to define a single and unique path by default when one use
> ox-bibtex?
>
> I meet the following problem. At the end of  an org file, in order to use
> ox-bibtex to get bibliographical references , I have this line:
>
> #+BIBLIOGRAPHY: references plain option:-a limit:t
>
> It means that I need to have the file references.bib in the same folder of
> this paper.org's . I have tried to write to give the path of the default
> folder of my references.bib:
>
>   #+BIBLIOGRAPHY: ~/Dropbox/Bibliographiers/references plain option:-a
> limit:t
>
> but  in this case biblatex2html fails.
>
> It means that I have to copy the references.bib from folder to folder and I
> do not like this solution.
>
> I do not doubt that there is a better solution, but I do not see it.
>
> Your help is welcome,
>
> Best wishes,
>
> Jo.
>

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

* Re: problem of path in using ox-bibtex
  2014-01-05 15:42 ` Julian Gehring
@ 2014-01-06 10:19   ` Joseph Vidal-Rosset
  2014-01-06 10:29     ` Fabrice Popineau
  0 siblings, 1 reply; 6+ messages in thread
From: Joseph Vidal-Rosset @ 2014-01-06 10:19 UTC (permalink / raw)
  To: Julian Gehring; +Cc: emacs-orgmode list

[-- Attachment #1: Type: text/plain, Size: 728 bytes --]

2014/1/5 Julian Gehring <julian.gehring@gmail.com>

> Have you tried to specify the full path without the expansion of '~' (i.e.
> replacing the "~" with "/home/USER/" or equivalent)?  At least, this seems
> to eliminate the error message of bibtex2html failing.


Sorry Julian, I reply too lately, but I have had some problems with my O.S.

No, I confirm that I need

#+BIBLIOGRAPHY: references plain option:-a limit:t

i.e. the references.bib file in the same folder of the paper.org file and
that


#+BIBLIOGRAPHY: /home/joseph/Dropbox/Bibliographies/references plain
option:-a limit:t

makes bibtex2html fails.

That'not a real problem. I am going to learn how organize my folders for
publishing with org.

Best wishes

Jo.

[-- Attachment #2: Type: text/html, Size: 1566 bytes --]

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

* Re: problem of path in using ox-bibtex
  2014-01-06 10:19   ` Joseph Vidal-Rosset
@ 2014-01-06 10:29     ` Fabrice Popineau
  2014-01-06 11:09       ` Joseph Vidal-Rosset
  2014-01-28 11:54       ` Rainer M Krug
  0 siblings, 2 replies; 6+ messages in thread
From: Fabrice Popineau @ 2014-01-06 10:29 UTC (permalink / raw)
  To: Joseph Vidal-Rosset; +Cc: emacs-orgmode list, Julian Gehring

[-- Attachment #1: Type: text/plain, Size: 1300 bytes --]

Does this :
http://blog.jansoehlke.com/?Recipes&nr=62
help to run bibtex2html in different directories ?

basically: either export TMPDIR=. or change open_any in texmf.cnf.

Fabrice



2014/1/6 Joseph Vidal-Rosset <joseph.vidal.rosset@gmail.com>

>
> 2014/1/5 Julian Gehring <julian.gehring@gmail.com>
>
>> Have you tried to specify the full path without the expansion of '~'
>> (i.e. replacing the "~" with "/home/USER/" or equivalent)?  At least, this
>> seems to eliminate the error message of bibtex2html failing.
>
>
> Sorry Julian, I reply too lately, but I have had some problems with my
> O.S.
>
> No, I confirm that I need
>
> #+BIBLIOGRAPHY: references plain option:-a limit:t
>
> i.e. the references.bib file in the same folder of the paper.org file and
> that
>
>
> #+BIBLIOGRAPHY: /home/joseph/Dropbox/Bibliographies/references plain
> option:-a limit:t
>
> makes bibtex2html fails.
>
> That'not a real problem. I am going to learn how organize my folders for
> publishing with org.
>
> Best wishes
>
> Jo.
>
>


-- 
Fabrice Popineau
-----------------------------
SUPELEC
Département Informatique
3, rue Joliot Curie
91192 Gif/Yvette Cedex
Tel direct : +33 (0) 169851950
Standard : +33 (0) 169851212
------------------------------

[-- Attachment #2: Type: text/html, Size: 2703 bytes --]

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

* Re: problem of path in using ox-bibtex
  2014-01-06 10:29     ` Fabrice Popineau
@ 2014-01-06 11:09       ` Joseph Vidal-Rosset
  2014-01-28 11:54       ` Rainer M Krug
  1 sibling, 0 replies; 6+ messages in thread
From: Joseph Vidal-Rosset @ 2014-01-06 11:09 UTC (permalink / raw)
  To: Fabrice Popineau; +Cc: emacs-orgmode list, Julian Gehring

[-- Attachment #1: Type: text/plain, Size: 620 bytes --]

Hello Fabrice,

2014/1/6 Fabrice Popineau <fabrice.popineau@supelec.fr>

> http://blog.jansoehlke.com/?Recipes&nr=62
> help to run bibtex2html in different directories ?
>

No, I got always the same message but I have not changed all texmf.cnf
files, but only the file of the path indicated in this blog.
Thanks for your help. I have decided to find the solution with org-publish,
in orgazing my folders as it is suggested here :

 http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html

it is maybe a good solution...

Meilleurs voeux pour cette année 2014, et encore merci !

Joseph

[-- Attachment #2: Type: text/html, Size: 1332 bytes --]

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

* Re: problem of path in using ox-bibtex
  2014-01-06 10:29     ` Fabrice Popineau
  2014-01-06 11:09       ` Joseph Vidal-Rosset
@ 2014-01-28 11:54       ` Rainer M Krug
  1 sibling, 0 replies; 6+ messages in thread
From: Rainer M Krug @ 2014-01-28 11:54 UTC (permalink / raw)
  To: Fabrice Popineau, Joseph Vidal-Rosset; +Cc: Julian Gehring, emacs-orgmode list

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1



On 01/06/14, 11:29 , Fabrice Popineau wrote:
> Does this : http://blog.jansoehlke.com/?Recipes&nr=62 help to run
> bibtex2html in different directories ?
> 
> basically: either export TMPDIR=. or change open_any in texmf.cnf.

Or create a script which is exporting TMPDIR=. and calls bibtex2html,
and place the script into your ~/bin directory - just make sure that
~/bin is the first entry in your path. By doing this, you only change
TMPDIR for the call of bibtex2html.

Cheers,

Rainer

> 
> Fabrice
> 
> 
> 
> 2014/1/6 Joseph Vidal-Rosset <joseph.vidal.rosset@gmail.com 
> <mailto:joseph.vidal.rosset@gmail.com>>
> 
> 
> 2014/1/5 Julian Gehring <julian.gehring@gmail.com 
> <mailto:julian.gehring@gmail.com>>
> 
> Have you tried to specify the full path without the expansion of 
> '~' (i.e. replacing the "~" with "/home/USER/" or equivalent)? At
> least, this seems to eliminate the error message of bibtex2html
> failing.
> 
> 
> Sorry Julian, I reply too lately, but I have had some problems
> with my O.S.
> 
> No, I confirm that I need
> 
> #+BIBLIOGRAPHY: references plain option:-a limit:t
> 
> i.e. the references.bib file in the same folder of the paper.org 
> <http://paper.org> file and that
> 
> 
> #+BIBLIOGRAPHY: /home/joseph/Dropbox/Bibliographies/references
> plain option:-a limit:t
> 
> makes bibtex2html fails.
> 
> That'not a real problem. I am going to learn how organize my
> folders for publishing with org.
> 
> Best wishes
> 
> Jo.
> 
> 
> 
> 
> -- Fabrice Popineau ----------------------------- SUPELEC 
> Département Informatique 3, rue Joliot Curie 91192 Gif/Yvette
> Cedex Tel direct : +33 (0) 169851950 Standard : +33 (0) 169851212 
> ------------------------------
> 

- -- 
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation
Biology, UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Stellenbosch University
South Africa

Tel :       +33 - (0)9 53 10 27 44
Cell:       +33 - (0)6 85 62 59 98
Fax :       +33 - (0)9 58 10 27 44

Fax (D):    +49 - (0)3 21 21 25 22 44

email:      Rainer@krugs.de

Skype:      RMkrug
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJS55p1AAoJENvXNx4PUvmCMVgIAK9N8oNbK+DjXdfYB/OOBqr1
HpU+/WURKrG38Z7B8ouiCbaXc+/tYCJ/b0gulj4ohrp9lByXvE7QGSOIZIJafo0g
ckPnjhq0iHH4025csACXiWiBs6ZLdmqW5thTwYCIdshG7OxN01pPMewYKBaHwgMQ
h/5izR/2XPeFgVpD08EHOvCgaZWU5D3eCmkIdYxDtTp4h/BOBzBh6Kq6BMYUgHp6
8ovoUDOZnYgLkfy/58hDA+R1IsDoqLpUsu1uqPX4v/WcE2e4aguIYVg1TDR9v1YF
ApAvo4bFc3CJjvvE0/SxErdnknkKWb2BQJhAensB4YcdFu4Sj637xmCmYDpebdQ=
=2/L1
-----END PGP SIGNATURE-----

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

end of thread, other threads:[~2014-01-28 11:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-05  8:35 problem of path in using ox-bibtex Joseph Vidal-Rosset
2014-01-05 15:42 ` Julian Gehring
2014-01-06 10:19   ` Joseph Vidal-Rosset
2014-01-06 10:29     ` Fabrice Popineau
2014-01-06 11:09       ` Joseph Vidal-Rosset
2014-01-28 11:54       ` Rainer M Krug

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