citation of the same work by the same author and different years

Asked

Viewed 67 times

0

Hello. I recently started using Latex to write my work. I would like to know how I can quote the same work of the same author in different years, writing something like:

Nameauthor(2009; 2017)

I’m using abntex2cite and running something like:

\citeonline{nameauthor2009, nameauthor2017}

however, this does not work for me:

Nameauthor(2009), Nameauthor(2017).

I appreciate any help.

1 answer

0

Your question was not very clear, but apparently what you intend to do is quote two editions different from the same work.

If so, you should create two entries in your file .bib changing only the tag of reference and to editing of the work.

The example below would be for a book.

@book{autor2009,
  author    = {Autor}, 
  title     = {Nome do livro},
  publisher = {Editora},
  year      = {ano},
  volume    = {volume},
  series    = {serie},
  address   = {Endereço},
  edition   = {**n° edição2009**},
  month     = {mês},
  note      = {Anotação},
  isbn      = {ISBN}
}

and

@book{autor2017,
  author    = {Autor}, 
  title     = {Nome do livro},
  publisher = {Editora},
  year      = {ano},
  volume    = {volume},
  series    = {serie},
  address   = {Endereço},
  edition   = {**n° edição2017**},
  month     = {mês},
  note      = {Anotação},
  isbn      = {ISBN}
}

and to quote you use \cite(autor2009) and \cite(autor2017).

Browser other questions tagged

You are not signed in. Login or sign up in order to post.