Send Ebib-users mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/ebib-users
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Ebib-users digest..."


Today's Topics:

   1. Re: new feature? (Joost Kremers)
   2. Org-mode integration (Thomas S. Dye)
   3. Re: Org-mode integration (Joost Kremers)
   4. Re: Org-mode integration (Thomas S. Dye)
   5. exit multiline editing (Piter_)
   6. Re: Org-mode integration (Thomas S. Dye)
   7. Re: exit multiline editing (Joost Kremers)
   8. texinfo source in git repo.? (Yagnesh Raghava Yakkala)


----------------------------------------------------------------------

Message: 1
Date: Tue, 22 Mar 2011 14:15:40 +0100
From: Joost Kremers <[email protected]>
Subject: Re: [Ebib-users] new feature?
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=utf-8

On Fri, Mar 18, 2011 at 04:42:35PM +0100, Piter_ wrote:
> Hi Joost.
> I have tried the function below and it does make a filename from the
> key. But I have a problem here. The changes are not saved. Ebib seems
> to not notice edition of the "file" field. It does not propose to save
> the database and if I try "s" command, it also does not help.
> Is anything can be done with it?

erm, yeah... after adding the filename to the file field, the database of course
needs to be marked as modified...

i should really write some decent access functions for interacting with the
database... then this wouldn't be a problem. but for now, just change the
function below to:

(defun ebib-pdf-file-name ()
 "Create a pdf file name of the basis of the current entry key.
The file name is inserted in the file field of the current entry."
 (interactive)
 (ebib-execute-when
   ((entries)
    (if (gethash 'file ebib-cur-entry-hash)
        (beep)
      (puthash 'file (concat "{" (car (edb-cur-entry ebib-cur-db)) ".pdf}") 
ebib-cur-entry-hash)
      (ebib-set-modified t)
      (ebib-fill-entry-buffer)))
   ((default)
    (beep))))

this only adds the line (ebib-set-modified t), which tells ebib that the
database was modified.

HTH


-- 
Joost Kremers
Life has its moments



------------------------------

Message: 2
Date: Tue, 12 Jul 2011 16:56:23 -1000
From: [email protected] (Thomas S. Dye)
Subject: [Ebib-users] Org-mode integration
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii

Aloha all,

I'm learning to use ebib productively and enjoying it.  Thanks to Joost
for a wonderful piece of software.

I use ebib in Org-mode sometimes where the citation commands I use are
Org-mode links, rather than LaTeX commands.  I'm wondering if it is
possible to turn off the automatic insertion of \ with
ebib-insert-bibtex-key?  It would be great to be able to configure ebib
so it would enter something like [[cite:bibtex-key][123]], instead of
\cite[123]{bibtex-key}.

All the best,
Tom

-- 
T.S. Dye & Colleagues, Archaeologists
735 Bishop St, Suite 315, Honolulu, HI 96813
Tel: 808-529-0866, Fax: 808-529-0884
http://www.tsdye.com



------------------------------

Message: 3
Date: Wed, 13 Jul 2011 09:25:20 +0200
From: Joost Kremers <[email protected]>
Subject: Re: [Ebib-users] Org-mode integration
To: [email protected]
Message-ID: <20110713072520.GA9895@darkstar>
Content-Type: text/plain; charset=utf-8

On Tue, Jul 12, 2011 at 04:56:23PM -1000, Thomas S. Dye wrote:
> I use ebib in Org-mode sometimes where the citation commands I use are
> Org-mode links, rather than LaTeX commands.  I'm wondering if it is
> possible to turn off the automatic insertion of \ with
> ebib-insert-bibtex-key?  It would be great to be able to configure ebib
> so it would enter something like [[cite:bibtex-key][123]], instead of
> \cite[123]{bibtex-key}.

I've just pushed a quick hack that should do this. It's not configurable, but at
least if you push to an org-mode buffer, Ebib now creates an org link rather
than a LaTeX command. It takes the form of [[cite:bibtex-key][123]] if you
provide an optional argument (only one optional argument is supported). If you
don't provide an optional argument, the link form is
[[cite:bibtex-key][bibtex-key]] (which is actually the form that I use: I don't
export from org to LaTeX...)

This may only partially do what you want, so I'd appreciate suggestions for
improvement. However, since I'm leaving on holiday tomorrow, you may have to
wait a couple of weeks until I have time to implement them. :-)


-- 
Joost Kremers
Life has its moments



------------------------------

Message: 4
Date: Wed, 13 Jul 2011 06:57:43 -1000
From: [email protected] (Thomas S. Dye)
Subject: Re: [Ebib-users] Org-mode integration
To: "Discussion of issues relating to Ebib."
        <[email protected]>
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii

Joost Kremers <[email protected]> writes:

> On Tue, Jul 12, 2011 at 04:56:23PM -1000, Thomas S. Dye wrote:
>> I use ebib in Org-mode sometimes where the citation commands I use are
>> Org-mode links, rather than LaTeX commands.  I'm wondering if it is
>> possible to turn off the automatic insertion of \ with
>> ebib-insert-bibtex-key?  It would be great to be able to configure ebib
>> so it would enter something like [[cite:bibtex-key][123]], instead of
>> \cite[123]{bibtex-key}.
>
> I've just pushed a quick hack that should do this. It's not configurable, but 
> at
> least if you push to an org-mode buffer, Ebib now creates an org link rather
> than a LaTeX command. It takes the form of [[cite:bibtex-key][123]] if you
> provide an optional argument (only one optional argument is supported). If you
> don't provide an optional argument, the link form is
> [[cite:bibtex-key][bibtex-key]] (which is actually the form that I use: I 
> don't
> export from org to LaTeX...)
>
> This may only partially do what you want, so I'd appreciate suggestions for
> improvement. However, since I'm leaving on holiday tomorrow, you may have to
> wait a couple of weeks until I have time to implement them. :-)

Aloha Joost,

Nice!  I'll work happily with this while you're away on vacation and if
I have suggestions for improvement I'll forward them in a couple of
weeks.

All the best,
Tom
-- 
T.S. Dye & Colleagues, Archaeologists
735 Bishop St, Suite 315, Honolulu, HI 96813
Tel: 808-529-0866, Fax: 808-529-0884
http://www.tsdye.com



------------------------------

Message: 5
Date: Tue, 19 Jul 2011 18:06:34 +0200
From: Piter_ <[email protected]>
Subject: [Ebib-users] exit multiline editing
To: "Discussion of issues relating to Ebib."
        <[email protected]>
Message-ID:
        <CAKMLjj7oXSOB9FjjHKDbWBa==fj8sn1gozx6fk3w0poosyq...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

Hi all
Cant figure out how to exit from multiline editing. C-x b tries to
switch buffers :(
Thanks.
Petro



------------------------------

Message: 6
Date: Tue, 19 Jul 2011 06:12:09 -1000
From: [email protected] (Thomas S. Dye)
Subject: Re: [Ebib-users] Org-mode integration
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii

Joost Kremers <[email protected]> writes:

> On Tue, Jul 12, 2011 at 04:56:23PM -1000, Thomas S. Dye wrote:
>> I use ebib in Org-mode sometimes where the citation commands I use are
>> Org-mode links, rather than LaTeX commands.  I'm wondering if it is
>> possible to turn off the automatic insertion of \ with
>> ebib-insert-bibtex-key?  It would be great to be able to configure ebib
>> so it would enter something like [[cite:bibtex-key][123]], instead of
>> \cite[123]{bibtex-key}.
>
> I've just pushed a quick hack that should do this. It's not configurable, but 
> at
> least if you push to an org-mode buffer, Ebib now creates an org link rather
> than a LaTeX command. It takes the form of [[cite:bibtex-key][123]] if you
> provide an optional argument (only one optional argument is supported). If you
> don't provide an optional argument, the link form is
> [[cite:bibtex-key][bibtex-key]] (which is actually the form that I use: I 
> don't
> export from org to LaTeX...)
>
> This may only partially do what you want, so I'd appreciate suggestions for
> improvement. However, since I'm leaving on holiday tomorrow, you may have to
> wait a couple of weeks until I have time to implement them. :-)

Aloha Joost,

This works very nicely for me.  At first, I worked around the default by
entering a space and then deleting [ ] in the org-mode buffer.  Then, I
redefined my citation link types to parse a semi-colon separated list of
2 items corresponding to the prenote and postnote optional arguments to
the biblatex command.  In this version, entering just the ; separator is
equivalent to an link without a description, so I have a very convenient
path to any result I want.

BTW, the export capability of ebib is extremely handy in my work.  It
allows me to create a custom bib file as I work on a document.

Thanks again,
Tom

-- 
T.S. Dye & Colleagues, Archaeologists
735 Bishop St, Suite 315, Honolulu, HI 96813
Tel: 808-529-0866, Fax: 808-529-0884
http://www.tsdye.com



------------------------------

Message: 7
Date: Mon, 8 Aug 2011 15:07:43 +0200
From: Joost Kremers <[email protected]>
Subject: Re: [Ebib-users] exit multiline editing
To: "Discussion of issues relating to Ebib."
        <[email protected]>
Message-ID: <[email protected]>
Content-Type: text/plain; charset=utf-8

Hi Petr,

> Cant figure out how to exit from multiline editing. C-x b tries to
> switch buffers :(

The multiline edit buffer was changed to a minor mode, so that the key bindings
had to be changed as well. The relevant key bindings are now C-c | q (save and
quit), C-c | s (save) and C-c | c (cancel edit). I admit they're a bit
cumbersome, but because mulitline-edit-mode is a minor mode, there isn't much I
can do about it, since minor modes are only allowed to use key bindings that
start with C-c plus some non-alphabetic character. You can, however, redefine
the second character of the key sequences by putting something like the
following into your .emacs:

(ebib-key multiline "&")

This changes the key bindings to C-c & q, C-c & s and C-c & c, respectively. You
can also choose some letter, if you prefer that.

All of this is described in the manual, by the way, although I should update the
version that appears on the website...


-- 
Joost Kremers
Life has its moments



------------------------------

Message: 8
Date: Sun, 04 Sep 2011 07:16:53 +0900
From: Yagnesh Raghava Yakkala <[email protected]>
Subject: [Ebib-users] texinfo source in git repo.?
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain


Hello.,

new user looking to tryout ebib.  I found that git repository doesn't
contain texinfo source file, although downloaded from the release has
the info file.

my intention to install ebib through el-get[1]. el-get automates the
installation and make info from git repository.


Footnotes: 
[1]  https://github.com/dimitri/el-get

-- 
YYR




------------------------------

------------------------------------------------------------------------------
Special Offer -- Download ArcSight Logger for FREE!
Finally, a world-class log management solution at an even better 
price-free! And you'll get a free "Love Thy Logs" t-shirt when you
download Logger. Secure your free ArcSight Logger TODAY!
http://p.sf.net/sfu/arcsisghtdev2dev

------------------------------

_______________________________________________
Ebib-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ebib-users


End of Ebib-users Digest, Vol 16, Issue 1
*****************************************

Reply via email to