BibTeX, biblatex and biber ⇒ Genitive: Meyer's (1972) instead Meyer (1972)'s
Genitive: Meyer's (1972) instead Meyer (1972)'s
I am a beginner with natbib. I'd like to have something like
"Meyer's (1972)" instead of "Meyer (1972)'s", for which I use \citet{Meyer}'s. Any suggestions?
Many thanks!
Johannes
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Genitive: Meyer's (1972) instead Meyer (1972)'s
If in one instance, the best I can think off the top of my head would be:
Code: Select all
Now let's look at \citeauthor{meyer1972}'s \citeyearpar{meyer1972}
Code: Select all
\newcommand{\citegenitive}[1]{\citeauthor{#1}'s \citeyearpar{#1}}
Of course hyperlinks will be broken up, and this won't handle citations with multiple authors as well.
Re: Genitive: Meyer's (1972) instead Meyer (1972)'s
Cheers, Johannes