Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I use zotero to manage my bibliography, and export collections to BibTeX when I'm writing in LaTeX. I use apacite as my style (I'm a psychology student).

I have a citation that should end up looking like this:

Ranney, M., Cheng, F., Garcia de Osuna, J., & Nelson, J. (2001, November). Numerically Driven Inferencing: A New Paradigm for Examining Judgments, Decisions, and Policies Involving Base Rates. Paper presented at the annual meeting of the Society for Judgment and Decision Making, Orlando, FL.

It is a "paper" which is really a talk at a conference with no proceedings. The closest I can get is with a Zotero "Presentation" with the following in the type field. Ends up as a "misc" in the BibTeX file:

using

@misc
...
type = {Paper presented at the annual meeting of the Society for Judgment & Decision Making}
...

Yields the following in my LaTeX / BibTeX output (unwanted square braces):

Ranney, M., Cheng, F., Osuna, J. G. de, & Nelson, J. (2001). Numerically driven inferenc- ing: A new paradigm for examining judgments, decisions, and policies involving base rates [Paper presented at the annual meeting of the Society for Judgment & Decision Making]. Orlando, FL.

Or, I can get close by hand-adding a booktitle field to the misc entry.

Note that Zotero outputs the "right thing" (to a word doc, or plain text, etc.) using a presentation, type = Paper, conference = the annual meeting of the Society for Judgment & Decision Making.

Anyway, I can just hand-code this as a lecture, but that sucks a little for my current work-flow.

Any ideas / hacks for how to deal with the problem much appreciated!

share|improve this question
This question doesn't quite speak to my question, but does imply that maybe I shouldn't be using apacite... – Dav Clark May 13 '11 at 23:39
If anyone's interested, there's a sister thread in the zotero forums here – Dav Clark May 15 '11 at 18:51

1 Answer

up vote 4 down vote accepted

I have used

@unpublished{key,
title= {talk title},
author = {author names},
year = {year},
note= {conference name},
URL= {url link to talk abstract if any},
}

to cite conference talks in my thesis

share|improve this answer
1  
Yeah - I think that does what I want too... for now, I've settled on using "misc," which I'm not certain is any different under the hood from unpublished. "misc" is no different in its output than the apacite-specific class "lecture," which seems to be the most semantically appropriate thing, but I'd rather not use apacite-specific classes! Instead of "note" I'm using "howpublished." But anyway, I appreciate your answer! – Dav Clark May 15 '11 at 18:49
@DavClark Thanks for the comment. That was exactly what was needed. If you put it as answer and accept it, I will upvote it. – Henrik Jul 22 '12 at 13:11
No worries - I think it's more straightforward to just leave the answer all together! – Dav Clark Aug 1 '12 at 3:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.