In biblatex citation, I want to put `and' in between author name if number of author is 2.
Otherwise for more number of authors the citation output will `first author et al., year'.
For example if bib file contains :
@article{two_name, title={ABC}, author={First, name and Second, name}, year={2002} } @article{three_name, title={ABC2}, author={First, name and Second, name and third, name}, year={2002} }
Then the citation should result in
- First and Second, 2002 for
\cite{two_name} First et al., 2002 for
\cite{three_name}
NOTe: maxcitenames=2 option of biblatex produce the first output correct. However, the second citation is rendered as First, Second et al., 2002.