Revision: 22175
          http://sourceforge.net/p/bibdesk/svn/22175
Author:   hofman
Date:     2018-04-06 21:07:17 +0000 (Fri, 06 Apr 2018)
Log Message:
-----------
support bib latex style commands from .aux files for selection

Modified Paths:
--------------
    trunk/bibdesk/BibDocument_DataSource.m

Modified: trunk/bibdesk/BibDocument_DataSource.m
===================================================================
--- trunk/bibdesk/BibDocument_DataSource.m      2018-04-06 06:30:33 UTC (rev 
22174)
+++ trunk/bibdesk/BibDocument_DataSource.m      2018-04-06 21:07:17 UTC (rev 
22175)
@@ -647,8 +647,12 @@
     if ([auxString rangeOfString:command].length == 0) {
         // if there are no \bibcite commands we'll use the cite's, which are 
usualy added as \citation commands to the .aux file
         command = @"\\citation{";
-        if ([auxString rangeOfString:command].length == 0)
-            return NO;
+        if ([auxString rangeOfString:command].length == 0) {
+            // biblatex uses the following comman
+            command = @"\\abx@aux@cite{";
+            if ([auxString rangeOfString:command].length == 0)
+                return NO;
+        }
     }
     
     NSScanner *scanner = [NSScanner scannerWithString:auxString];

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Bibdesk-commit mailing list
Bibdesk-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to