]> git.donarmstrong.com Git - org-ref.git/blobdiff - jmax-bibtex.el
add new character
[org-ref.git] / jmax-bibtex.el
index cf016cb0c747a7eca8cad49b1cc747f377533b67..e560e540c609191d1efc0bbff04a1246e9027b97 100644 (file)
@@ -81,6 +81,7 @@
     ("JPCC" "The Journal of Physical Chemistry C" "J. Phys. Chem. C")
     ("JPCL" "The Journal of Physical Chemistry Letters" "J. Phys. Chem. Lett.")
     ("JCP" "The Journal of Chemical Physics" "J. Chem. Phys.")
+    ("MSMSE" "Modelling and Simulation in Materials Science and Engineering" "Modell. Simul. Mater. Sci. Eng.")
     ("TSF" "Thin Solid Films" "Thin Solid Films")
     ("TC" "Topics in Catalysis" "Top. Catal.")
     ("WR" "Water Research" "Water Res."))
@@ -173,6 +174,7 @@ This is defined in `jmax-bibtex-journal-abbreviations'."
        ("ë" . "{\\\\\"e}")
        ("ü" . "{\\\\\"u}")
        ("ñ" . "{\\\\~n}")
+       ("ņ" . "{\\\\c{n}}")
        ("å" . "{\\\\aa}")
        ("ö" . "{\\\\\"o}")
        ("í" . "{\\\\'i}")
@@ -181,6 +183,7 @@ This is defined in `jmax-bibtex-journal-abbreviations'."
        ("ú" .  "{\\\\'u}")
        ("ú" . "{\\\\'u}")
        ("š" . "{\\\\v{s}}")
+       ("ř"  . "{\\\\v{r}}")
        ("İ" . "{\\\\.I}")
        ("ğ" . "{\\\\u{g}}")
        ("δ" . "$\\\\delta$")
@@ -257,7 +260,7 @@ all the title entries in articles."
        (setf (car words) (s-capitalize (car words))))
 
       (setq title (mapconcat 'identity words " "))
-      
+
       ;; Capitalize letters after a dash
       (while
          (string-match "[a-zA-Z]-\\([a-z]\\)" title start)
@@ -265,7 +268,7 @@ all the title entries in articles."
          (setf (substring title (match-beginning 1) (match-end 1))
                (format "%s" (upcase char)))
          (setq start (match-end 1))))
-           
+
       ;; this is defined in doi-utils
       (bibtex-set-field
        "title"
@@ -297,7 +300,7 @@ all the title entries in articles."
                         word
                       (s-downcase word)))
                   words))
-      
+
       ;; capitalize first word
       (setf (car words) (s-capitalize (car words)))
 
@@ -312,7 +315,7 @@ all the title entries in articles."
 ;;             (format "{%s}" (upcase char)))
                (format "%s" (upcase char)))
          (setq start (match-end 1))))
-           
+
       ;; this is defined in doi-utils
       (bibtex-set-field
        "title" title)
@@ -413,11 +416,11 @@ N is a prefix argument.  If it is numeric, jump that many entries back."
   "thin wrapper to get `jmax-bibtex' to open pdf"
   (interactive)
   (org-ref-open-bibtex-pdf))
-  
+
 
 
 (defvar jmax-bibtex-menu-funcs '()
- "Functions to run in doi menu. Each entry is a list of (key menu-name function). 
+ "Functions to run in doi menu. Each entry is a list of (key menu-name function).
 The function must take one argument, the doi.")
 
 (setq jmax-bibtex-menu-funcs
@@ -431,9 +434,11 @@ The function must take one argument, the doi.")
 
 (defun jmax-bibtex ()
   "Menu command to run in a bibtex entry.
-Functions from `jmax-bibtex-menu-funcs'."
-  
+Functions from `jmax-bibtex-menu-funcs'. They all rely on the
+entry having a doi."
+
   (interactive)
+  ;; construct menu string as a message
   (message
    (concat
     (mapconcat
@@ -446,7 +451,7 @@ Functions from `jmax-bibtex-menu-funcs'."
                  (char-to-string input) jmax-bibtex-menu-funcs)))
     (when choice
       (funcall
-       (elt 
+       (elt
        choice
        2)
        (jmax-bibtex-entry-doi)