[Tex/LaTex] How to cite a paper I didn’t read

bibliographiesbibtexciting

The problem I have is that a paper that is cited by other papers I've read is not to be found. I've read only its abstract. I understand that what I want should look like

Featherstone et al 1900 (as cited in Thomas and Cullen 2002)

but I have no idea how to do it in LaTeX or BibTeX for that matter. I have no idea how to Google it either. I hope there's a way to do it.

Best Answer

Using biblatex, the solution would be similar. In in-text citation could be \textcite{featherstone1900} (assuming that's the .bib entry) and the parenthetical reference could be \parencite[as cited in][]{thomas-cullen2002} (again assuming that's the .bib entry).

Note, however, that biblatex offers a lot more in the way of citation commands, including especially \autocite and \smartcite, which are really clever at doing things 'right' given the citation style you have specified. If that's not enough, there are several dozen(!) variations of \*cite* commands. No other package matches this level of flexibility for bibliographies and citations.

Related Question