I use BibDesk to organise my library and implement quotations through biblatex in my documents.
BibDesk has this feature of allowing the user to see a BiBTeX-preview (not biblatex!) of the currently selected publication at the bottom or the sidebar. You can choose between different styles (like ieeetr, alpha, abrvnat etc.).
Until now I never thought about using this preview, because (1) I did not find a style I like and (2) it does not render my biblatex commands and types properly.
So, instead I used the following .tex file (which I found somewhere on the net and modified):
% !TEX TS-program = lualatexmk
\documentclass[a4paper, 11pt, DIV=13]{scrartcl}
\usepackage{fontspec}
\setmainfont[ Numbers=OldStyle,
Ligatures=TeX]{Times New Roman}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage[ style=reading,
abstract=false,
abbreviate=false,
backend=biber
]{biblatex}
\addbibresource{BibLaTeX.bib}
\usepackage{hyperref}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
This .tex file creates a PDF listing all the publications I have in my .bib file. With this PDF I could easily check and see whether references are properly set. However, creating this PDF file takes rather long, as my library is growing... And anyway it is rather a detour, to be honest, given that there actually is a preview feature implemented into BibDesk.
My question now is: Is it possible to preview my biblatex references with BibDesk's preview-feature using the style I used in the .tex file shown above? What do I have to change in the settings of BibDesk in order to generate a biblatex output?

BibDeskandbiblatex/biberthere are limits to this combo. Basically,BibDeskdoesn't know how to handle any ofbiblatex's linked entries by thexrefor related entries entries. Forbibtextraditional crossref fieldsBibDeskwill search for the linked entry and display everything correctly. But if you want to display an entry making use ofbiblatex's related feature you have to select both entries by hand. Unfortunately,BibDesk's developers are not interested in improving this. – Simifilm Jan 14 '13 at 06:22relatedandxrefentries? (I'm having the same issue as you have it seems, usingbiblatex-chicago) – jan Aug 10 '16 at 09:19BibDeskdevelopers are really not intobiblatex. I would love if someone created abiberDeskfork, but this does not seem very likely ATM. – Simifilm Aug 14 '16 at 08:19biberDeskwould indeed be awesome! I usebiblatex-chicagoand for the accurate rendering of reviews or translated works it's really impossible without using the biblatexrelatedfields. The problem is also that BibDesk doesn't update citekeys in these fields as it does for traditional crossrefs. I wish they would consider adding that as an option but I also have little hope. I might try to politely ask about these features via the list as maybe there are others who would support our case ... and maybe if there is enough interest they'll reconsider. – jan Aug 14 '16 at 16:31