I have several email conversations I would like to cite in my PhD thesis. The bibliography style that I'm using is \bibliographystyle{IEEEtranSN}.
I know that style is not IEEE compliant in a strict way, but comes good enough for me as I'm actually defining the template (as described in this question: When should I upload my new style?).
Now, according to this post: Citing personal correspondence with function of cited person via email?, Esteis wrote:
I'd stick "Personal communication" in
howpublished
However, the answer is not complete as for which entry (@article, @inproceedings, etc.) and what should really be the IEEE standard for this.
According to IEEEtran_bst_HOWTO documentation pdf:
Private communication entries can be created using the misc type with a note indicating “private communication” or “personal correspondence”, etc.
So, the "solution" should be to add a @misc entry in your .bib file, something like this:
@misc{IEEEexample:private,
author = "S. Konyagin",
howpublished = "private communication",
year = "1998"
}
However, this seems rather incomplete. Shouldn't we define what type of communication it was (forums, letters, emails, phone talks, etc.)? Should we create a new entry for each conversation? For each day? What should really be the right way to do this?
note, theaddendumor thetypefield. Withtypeyou can specify unsupported types that are otherwise recorded as@miscentries, just like in your case. You could havetype = letter. – Count Zero Apr 23 '13 at 11:34