dcpurton / biblatex-sbl

Society of Biblical Literature (SBL) style files for biblatex
24 stars 5 forks source link

url=false #111

Open lyndondrake opened 4 years ago

lyndondrake commented 4 years ago

Hi,

As far as I can tell, biblatex-sbl doesn't recognise url=false. It'd be great if you could add it as an option?

dcpurton commented 4 years ago

Oh. It should.

For example (note that this exposes a bug in the list of abbreviations which has been fixed, but not released):

\documentclass{article}

\begin{filecontents}[overwrite]{\jobname.bib}
@book{kaufman:1974,
  author = {Kaufman, Stephen},
  title = {The Akkadian Influences on Aramaic},
  series = {Assyriological Studies},
  shortseries = {AS},
  number = {19},
  location = {Chicago},
  publisher = {The Oriental Institute of the University of Chicago},
  date = {1974},
  url = {http://oi.uchicago.edu/pdf/as19.pdf}
}
@article{truehart:1996,
  author = {Truehart, Charles},
  title = {Welcome to the Next Church},
  shorttitle = {Next Church},
  url = {http://www.theatlantic.com/atlantic/issues/96aug/nxtchrch/nxtchrch.htm},
  journaltitle = {Atlantic Monthly},
  volume = {278},
  date = {1996-08},
  pages = {37-58}
}
@article{kirk:2007,
  author = {Kirk, Alan},
  title = {Karl Polanyi, Marshall Sahlins, and the Study of Ancient Social Relations},
  shorttitle = {Karl Polanyi},
  journaltitle = {Journal of Biblical Literature},
  shortjournal = {JBL},
  volume = {126},
  date = {2007},
  pages = {182-191},
  doi = {10.2307/27638428},
  url = {http://www.jstor.org/stable/27638428}
}
@online{goodacre:2014,
  author = {Goodacre, Mark},
  title = {Jesus' Wife Fragment: Another Round-Up},
  journaltitle = {NT Blog},
  date = {2014-05-09},
  url = {http://ntweblog.blogspot.com}
}
@manual{SBLHS:studentsupp,
  author = {Nogalski, Melanie Greer and Nogalski, James D. and Steibel, Sophia G. and West, Danny M.},
  authortype = {compiled by},
  editor = {LeMon, Joel M. and Breed, Brennan W.},
  title = {Student Supplement for the \citeshorthand{SBL} Handbook of Style, Second Edition},
  shorttitle = {Student Supplement for the \mkbibemph{\citeshorthand{SBLHS}}},
  location = {Atlanta, GA},
  publisher = {SBL Press},
  date = {2015-02},
  url = {https://www.sbl-site.org/assets/pdfs/pubs/SBLHSsupp2015-02.pdf},
  options = {useauthor=false,useeditor=false},
}
@periodical{sblhs2.com,
  title = {SBL Handbook of Style},
  subtitle = {Explanations, Clarifications, and Expansions},
  url = {https://sblhs2.com}
}
@misc{SBL,
  note = {Society of Biblical Literature},
  shorthand = {SBL},
  options = {skipbib}
}
@manual{SBLHS,
  title = {Society of Biblical Literature Handbook of Style},
  shorttitle = {SBLHS},
  edition = {2},
  location = {Atlanta, GA},
  publisher = {SBL Press},
  date = {2014},
  shorthand = {SBLHS}
}
\end{filecontents}

\usepackage[style=sbl,url=false]{biblatex}

\addbibresource{\jobname.bib}

\begin{document}

\null\vfill

\autocite{kaufman:1974,truehart:1996,kirk:2007,goodacre:2014,SBLHS:studentsupp,sblhs2.com}

\autocite{kaufman:1974,truehart:1996,kirk:2007,goodacre:2014,SBLHS:studentsupp,sblhs2.com}

\printbiblist{abbreviations}

\printbibliography

\end{document}

output