]> git.donarmstrong.com Git - org-ref.git/commitdiff
ignore test files.
authorJohn Kitchin <jkitchin@andrew.cmu.edu>
Mon, 18 May 2015 14:36:15 +0000 (10:36 -0400)
committerJohn Kitchin <jkitchin@andrew.cmu.edu>
Mon, 18 May 2015 14:36:15 +0000 (10:36 -0400)
Commit changes in abbreviations in jmax-bibtex.el, and fix a link in sci-id.el.

.gitignore
jmax-bibtex.el
sci-id.el

index deab7c4ca08f33ff4fdb2da69beb69f58ba7c740..db157c44d972f96e98e3ec41d681c20af82b42ef 100644 (file)
@@ -15,3 +15,9 @@
 /org-ref.ind
 /org-ref.lof
 /org-ref.lot
+/test.bbl
+/test.blg
+/test.html
+/test.org
+/test.pdf
+/test.tex
index d9ab657711693b154cf39037bb1b9cc9986cd427..695cf87ddaac5df83ccea07c3f0df680c4438861 100644 (file)
@@ -101,6 +101,7 @@ I like \C-cj."
        ("CC" "Catalysis Communications" "Catal. Commun.")
        ("CST" "Catalysis Science & Technology" "Catal. Sci. Technol.")
        ("CT" "Catalysis Today" "Catal. Today")
+       ("ChC" "Chemical Communications" "Chem. Commun.")
        ("CPL" "Chemical Physics Letters" "Chem. Phys. Lett")
        ("CR" "Chemical Reviews" "Chem. Rev.")
        ("CSR" "Chemical Society Reviews" "Chem. Soc. Rev.")
@@ -108,6 +109,7 @@ I like \C-cj."
        ("CM" "Chemistry of Materials" "Chem. Mater.")
        ("CSA" "Colloids and Surfaces, A: Physicochemical and Engineering Aspects"
         "Colloids Surf., A")
+       ("CF" "Combustion and Flame" "Combust. Flame")
        ("CPMS" "Computational Materials Science" "Comp. Mater. Sci.")
        ("CPC" "Computer Physics Communications" "Comput. Phys. Commun.")
        ("CSE" "Computing in Science \\& Engineering" "Comput. Sci. Eng.")
@@ -245,7 +247,7 @@ START and END allow you to use this with `bibtex-map-entries'"
    (helm :sources `((name . "journal")
                    (candidates . ,(mapcar
                                    (lambda (x)
-                                     (cons (nth 1 x)
+                                     (cons (format "%s | %s"  (nth 1 x) (nth 2 x))
                                            (car x)))
                                    jmax-bibtex-journal-abbreviations))
                    (action . (lambda (x) (identity x))))
index e29388c2b382cef037a230a3057b487be103530f..f204c384028bdc22f582df6bf9da8f12a57e0372 100644 (file)
--- a/sci-id.el
+++ b/sci-id.el
@@ -59,7 +59,7 @@
  (lambda (keyword desc format)
    (cond
     ((eq format 'latex)
-     (format "\\href{http://www.scopus.com/authid/detail.url\\?origin=AuthorProfile&authorId=%s}{%s}" keyword desc))
+     (format "\\href{http://www.scopus.com/authid/detail.url?origin=AuthorProfile&authorId=%s}{%s}" keyword (or desc keyword)))
     ((eq format 'html)
      (format "<a href=\"http://www.scopus.com/authid/detail.url?origin=AuthorProfile&authorId=%s\">scopusid:%s</a>" keyword keyword)))))