Re: [O] helm-bibtex questions

2015-06-30 Thread John Kitchin
I think you are also still missing a % sign at the beginning of the -*- line. What if you change the dialect from the bibtex Entry-types menu? also, what still doesn't work? Eric S Fraga writes: On Saturday, 27 Jun 2015 at 09:11, Xebar Saram wrote: hmm strange still dosent work for me. here

Re: [O] helm-bibtex questions

2015-06-30 Thread Eric S Fraga
On Saturday, 27 Jun 2015 at 09:11, Xebar Saram wrote: hmm strange still dosent work for me. here is the top section of my bib file -*- mode:bibtex; eval: (bibtex-set-dialect 'biblatex); -*- @article{ackerman-1998-discr-clear, author = {Ackerman, {S.A.} and Strabala, {K.I.} and Menzel,

Re: [O] helm-bibtex questions

2015-06-30 Thread Xebar Saram
Thanks guys it works now ! best z On Tue, Jun 30, 2015 at 4:19 PM, John Kitchin jkitc...@andrew.cmu.edu wrote: I think you are also still missing a % sign at the beginning of the -*- line. What if you change the dialect from the bibtex Entry-types menu? also, what still doesn't work?

Re: [O] helm-bibtex questions

2015-06-30 Thread Xebar Saram
:) it was the % at the start thx again all best Z On Tue, Jun 30, 2015 at 5:37 PM, Eric S Fraga e.fr...@ucl.ac.uk wrote: On Tuesday, 30 Jun 2015 at 16:44, Xebar Saram wrote: Thanks guys it works now ! Which fix worked? The , or the %? Enquiring minds wish to know... Excellent

Re: [O] helm-bibtex questions

2015-06-30 Thread Eric S Fraga
On Tuesday, 30 Jun 2015 at 16:44, Xebar Saram wrote: Thanks guys it works now ! Which fix worked? The , or the %? Enquiring minds wish to know... Excellent news, in any case. -- : Eric S Fraga (0xFFFCF67D), Emacs 24.4.1, Org release_8.3beta-1261-g304f84

Re: [O] helm-bibtex questions

2015-06-27 Thread Xebar Saram
hmm strange still dosent work for me. here is the top section of my bib file -*- mode:bibtex; eval: (bibtex-set-dialect 'biblatex); -*- @article{ackerman-1998-discr-clear, author = {Ackerman, {S.A.} and Strabala, {K.I.} and Menzel, {W.P.} and Frey, {R.A.} and Moeller, {C.C.}

Re: [O] helm-bibtex questions

2015-06-27 Thread John Kitchin
You need: % -*- mode:bibtex; eval: (bibtex-set-dialect 'biblatex); -*- You probably have to close and reopen the file, and you will probably be prompted for running local variables (or use C-x C-e after the command above it With this, it works fine for me. This isn't really an org-ref

Re: [O] helm-bibtex questions

2015-06-26 Thread Xebar Saram
thanks so much again John i did add this line (bibtex-set-dialect 'biblatex) in my init but that dosent seem to do much as i still get the journal mandatory field missing error. anything else i can try? best Z On Thu, Jun 25, 2015 at 2:09 PM, John Kitchin johnrkitc...@gmail.com wrote: I

Re: [O] helm-bibtex questions

2015-06-26 Thread Xebar Saram
Hi Titus Another round of helm-bibtex questions if you dont mind (question come since i use it 50 times a day now ;-)) 1. is there a way (or a keybind) to select all entries filtered? now to select all my publications for example i have to use C-space repeatedly. 2. what is the syntax for

Re: [O] helm-bibtex questions

2015-06-26 Thread John Kitchin
http://tex.stackexchange.com/questions/78455/does-emacs-support-editing-bibliography-files-for-biblatex I think you need this in your bibtex file: -*- mode:bibtex; eval: (bibtex-set-dialect 'biblatex); -*- Xebar Saram writes: thanks so much again John i did add this line

Re: [O] helm-bibtex questions

2015-06-26 Thread John Kitchin
In org-ref, I have a function that will copy a bibtex entry to the clipboard in the helm menu for the cite link actions: https://github.com/jkitchin/org-ref/blob/master/org-ref.el#L3363 And here a menu item to insert a bibtex entry and attach its pdf to an email:

Re: [O] helm-bibtex questions

2015-06-26 Thread Titus von der Malsburg
On 2015-06-26 Fri 00:21, Xebar Saram wrote: Hi Titus Another round of helm-bibtex questions if you dont mind (question come since i use it 50 times a day now ;-)) No problem. I’ve also learned a couple of things though this exchange. 1. is there a way (or a keybind) to select all entries

Re: [O] helm-bibtex questions

2015-06-26 Thread Titus von der Malsburg
On 2015-06-26 Fri 10:21, Titus von der Malsburg wrote: On 2015-06-26 Fri 00:21, Xebar Saram wrote: Hi Titus Another round of helm-bibtex questions if you dont mind (question come since i use it 50 times a day now ;-)) No problem. I’ve also learned a couple of things though this exchange.

Re: [O] helm-bibtex questions

2015-06-24 Thread John Kitchin
yes, there is a way ;) First. Make sure you have a backup of the references. I like to keep mine in a local git repo so you can undo any mistakes that get made. I suggest you run these first: %% (bibtex-validate-globally) ; checks for duplicate keys %% (bibtex-validate) I also recommend you

Re: [O] helm-bibtex questions

2015-06-24 Thread Xebar Saram
John First of all thanks so much for the excellent org-ref-clean-bibtex-entry function i love it! also your blog post on cleaning the bib file is a life saver i have 800 references, is there a way to auto make org-ref-clean-bibtex-entry go thorough my whole bib file instead of me going and

Re: [O] helm-bibtex questions

2015-06-22 Thread Titus von der Malsburg
Here is my CV in org-mode: https://gist.github.com/tmalsburg/96084ba82281937c26b7 It’s a pretty straightforward org document except for one thing: the key to making this work was biblatex which can be used to create several lists of references filtered according to keywords, author, etc.

Re: [O] helm-bibtex questions

2015-06-22 Thread Xebar Saram
Hi John a bit off topic, but do you also write your academic CV in orgmode or lateX? in anycase would you mind sharing your org/latex CV template? it would be helpful as a starting point for me if thats possible. kind regards and thanks so much in advance Z On Sun, Jun 21, 2015 at 9:40 PM,

Re: [O] helm-bibtex questions

2015-06-21 Thread Titus von der Malsburg
On 2015-06-19 Fri 03:56, Xebar Saram wrote: Hi again Titus 2 quick questions that arose from using helm-bitex today extensively: how does one exclude in the search items? for example i want to search for xebar without keyword progress (I want to exclude in progress articles not published

Re: [O] helm-bibtex questions

2015-06-21 Thread John Kitchin
sweet! I did not know you could do that! I will be refactoring org-ref soon to do that instead of redefining the commands! John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213

Re: [O] helm-bibtex questions

2015-06-19 Thread John Kitchin
Xebar Saram writes: Hi again Titus 2 quick questions that arose from using helm-bitex today extensively: how does one exclude in the search items? for example i want to search for xebar without keyword progress (I want to exclude in progress articles not published yet) Try this in the

Re: [O] helm-bibtex questions

2015-06-19 Thread John Kitchin
3.is it possible to ass an option to auto generate a bibkey for a selected citation based on user criteria such as author(date)short-title? Maintaining the content of the BibTeX file not really in the scope of helm-bibtex (I prefer to write my BibTeX entries by hand). Perhaps org-ref or

Re: [O] helm-bibtex questions

2015-06-19 Thread Xebar Saram
Hi again Titus 2 quick questions that arose from using helm-bitex today extensively: how does one exclude in the search items? for example i want to search for xebar without keyword progress (I want to exclude in progress articles not published yet) is it possible to define default enter

Re: [O] helm-bibtex questions

2015-06-18 Thread Xebar Saram
Hi Titus and thx so much for the answers! i will in the future use the github page to make requests. The number of matches will be displayed in the mode line. i see that now thx! :) the problem was(is) that its colored black on my black modline BG which makes it invisible ;-) i assume thats an

Re: [O] helm-bibtex questions

2015-06-18 Thread Titus von der Malsburg
On 2015-06-18 Thu 04:32, Xebar Saram wrote: Hi Titus and thx so much for the answers! i will in the future use the github page to make requests. The number of matches will be displayed in the mode line. i see that now thx! :) the problem was(is) that its colored black on my black modline

[O] helm-bibtex questions

2015-06-17 Thread Xebar Saram
Hi Titus I have been exploring helm-bibtex a bit today and have some questions. btw is this the preferred way to make requests/ask questions or is github preferred? in any case i was wondering a few things: 1. is it possible to have custom sorting? i want all views to sort by Author, year,

Re: [O] helm-bibtex questions

2015-06-17 Thread Titus von der Malsburg
On 2015-06-17 Wed 11:08, Xebar Saram wrote: Hi Titus I have been exploring helm-bibtex a bit today and have some questions. btw is this the preferred way to make requests/ask questions or is github preferred? Helm-bibtex is not part of org (although it tries to work well with org). So I’m