I've spent a good deal of time searching the forum and couldn't find a user-friendly guide to citations with biber using TeXShop or TeXworks on a Mac. I'd like to successfully reproduce a slightly modified version lockstep's MWE found on another thread:
\listfiles
\documentclass{article}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Some text \autocite{A01}.
\printbibliography
\end{document}
Unfortunately, TeXShop and TeXworks only return the following:
Some text [A01].
I believe the problem resides with typesetting. Specifically, I understand that I must compile by calling pdflatex, biber, pdflatex. Unfortunately, biber is not listed as an engine under either TeXShop or TeXworks. First, I've verified that the appropriate packages are all installed using Tex Live Utility. I then tried to follow the biber manual to add the engine to TeXworks but didn't know how to browse my file directory to locate biber (assuming its somewhere under the /usr folder tree) nor could I add any 'arguments' as shown in the manual.
With respect to TeXShop (my preferred program) there seems to be some complication with adding biber. I did note Mark S. Everitt's script (In TeXShop, is there a directive to select biber or BibTeX on a per-document basis?) but didn't know where to place his script. I tried placing it in '/usr/texbin' but to no avail (assuming that I still need to compile by calling pdflatex, biber, pdflatex).
Any guidance would be greatly appreciated!
[Please bear with me. As a polisci doc candidate I have little understanding of computers, esp scripts/programming. :( ]

which biberon a command line. That should tell you where the biber executable is. – Caramdir Jul 14 '12 at 16:02biberinstead ofbiblatexin theBibTeX enginefield (under Preferences > Engines in TeXShop) should be enough. – Caramdir Jul 14 '12 at 16:04