Feel free to add answers here to commonly asked questions on the BibDesk users' list!
Select the BibTeX style (in Endnote 9, the current style is in the toolbar - click on it, select "Select Another Style", and choose "BibTeX Export")
Then select File->Export. Save file as type Text Only, make sure "Export Selected References" is unchecked if you want to save all the references in your file, then save the file.
Rename the file with a .bib extension in the Finder.
Then open BibDesk and select File->Open Using Temporary Cite Keys. After it opens, it is recommended to generate cite keys to replace the temporary ones. Then select File->Save As (cmd-shift-S) and save the file under a new file name.
NB: Open Using Temporary Cite Keys creates a temporary file, so if you cannot just use File->Save (cmd-S) to save the file.
There are many ways to add existing reference items to a BibDesk database.
Formatted text can be BibTeX, RIS, Medline (PubMed), MARC, JSTOR, ISI Web of Science, and Refer/EndNote.
See the User Manual for more details.
Q: When I try dragging a PDF into the reference window., I do not get a new record. Instead, the PDF is added to whichever record I put it on top of. Am I missing something?
A: The table allows dragging onto records to update them with the file you drop as well as dragging into empty space on the table to create a new record. If there is no empty space to drag to, you need to drop it between two rows - you should be able to tell that the whole table is highlighted when you move the dragged PDF up and down across row boundaries. Drop it while the whole table is highlighted and you'll create a new entry.
The local file and remote URL fields, such as Local-Url and Url, have been deprecated in favor of the linked files and URLs displayed in the side panes. As a result, newly added linked files and URLs are not added to the Local-Url and Url fields anymore. If you want to display new-style linked files and URLs in the main table, you should add a Local File or Remote URL column to the table as follows:
BibDesk uses the Bdsk-File- and Bdsk-Url-fields to save location information for linked files and linked URLs, respectively. These are the linked files and URLs that appear as icons on the right-hand side pane of the main window and the detail window. Files are now stored using Mac OS aliases, so you can move them in the Finder without breaking BibDesk's links.
No. This is planned for BibDesk 2. See http://sourceforge.net/tracker/index.php?func=detail&aid=1431354&group_id=61487&atid=497426
BibDesk does not have a dedicated batch editor like for example iTunes. This is not feasible, because the possible fields are not fixed.
However, BibDesk knows several ways to edit a single field for a batch of items.
To set a field in a batch of items to a fixed value, do the following:
To Find & Replace text of a field in a batch of items, do the following:
To change a fixed (sub)text in a field in a batch of items, do the following:
Currently you can't change BibDesk's sorting behavior, so empty fields will always get sorted after the newest items. But a good workaround for this problem is to change the "Date-Added" field of the old items to some date in the past.
To do so, do the following:
Crossrefs are not really a BibDesk feature, but a BibTeX feature. BibDesk does nothing but simulating what BibTeX does when a crossref is detected, so there is no point in changing the behaviour.
Crossrefs are very handy when you have a "parent" item (like a proceedings volume or a book that contains several articles) which should be linked to one or more "child" items (the several inproceedings or incollection items).
BibTeX's crossref mechanism is very simple, but very powerful. When a Crossref: field is detected in a "child" item, BibTeX takes all fields that are not present in the child from the parent. So, you just have to set up the child's Author, Title, Pages etc., and all the information for the parent (like Booktitle, Editor, Publisher etc.) are gained from the parent automatically.
The Title field may be a problem, since it is used in both child and parent. Therefore the parent's Title should be copied to the Booktitle field. Don't worry: BibDesk can do that automatically for you (if the "Duplicate Title to Booktitle" preference is selected). It also sorts the items correctly if the "Auto Sort for Crossrefs" preference is selected.
To export items to the order in which they appear in the table, rather than the order in which they appear in the file, select all items in the table, choose the Export... menu item in the File menu, and select "Only export selected items" in the save panel.
This is done with plugin scripts and applications that have been contributed by users. See [Format_Citations_for_Editors] for more information.
This comes up if you want to share data with someone who may not have the same macro expansion for the month (maybe they'll use a different style file, for instance).
Here is an example from Christiaan on the mailing list:
(Answer from Daniel Becker on the bibdesk-users list, edited a bit by Michael McCracken)
You need to use the hyperref package, and the url environment to get properly encoded URLs in LaTeX.
The underscore is a special symbol for math in LaTeX, hence it wants to enclose it in dollar signs, as in <source lang="latex">$x_A^2$</source>. For bibtex, just loading the hyperref package is not enough.
If you put the url in a command like <source lang="latex">\url{www.test.de/bla_58}</source> - then hyperref kicks in and does its work.
In order to have the URL actually appear in the reference, you can either put it in the "Note" field of your item or you can to use an entry type like webpage, url, online or so.
The bibtex style (bst file, specified in the <source lang="latex">\bibliographystyle{}</source> command) you are using must be aware of the BibTeX-type "webpage" and know what to do with "Lastchecked" or "Url". This is done by http://purl.org/nxg/dist/urlbst
It seems that natbib also supports by default URL and doi.
You may also be interested in biblatex: Before you invest time in traditional bibtex and how to add support for urls, consider biblatex.