Style citation: "(Author, Date)" to "Author (Date)"

5

I'm using abntcite . I would like to know how to change the style of just a few quotes from (Autor, Data) to Autor (Data) . I tried using \citeauthor{chave} , but it did not work. Thank you.

    
asked by anonymous 02.01.2015 / 05:16

2 answers

2

You can use:

\citeonline{ID_DO_AUTHOR}.

This generates:

 Fulano (2014)

And it's useful also for situations like:

 Segundo \citeonline{ID_DO_AUTHOR} o sistema ...

If this is the case, you can also inform the citation page like this:

\citeonline[p.~20-22]{ID_DO_AUTHOR}.
    
02.01.2015 / 19:05
0

I would suggest:

\usepackage{natbib}

(with several options: sectionbib, square, etc). When using quote:

\citep{jon90} for a parenthetical citation (Jones et al., 1990),
\citet{jon90} for a textual one, as Jones et al. (1990).

View details on CTAN: //macros/latex/contrib/natbib/natbib.pdf

    
25.05.2015 / 16:40