Uso de BibTeX na Wiki

De MediaWiki do Campus São José
Revisão de 10h42min de 17 de setembro de 2007 por Moecke (discussão | contribs) (New page: == Exemplo de uso== Veja o exemplo de uso (retirado de uma base de dados BibTeX) <nowiki> <bibtex> @article{lin1973, author = "Shen Lin and Brian W. Kernighan", title = "An Eff...)
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegação Ir para pesquisar

Exemplo de uso

Veja o exemplo de uso (retirado de uma base de dados BibTeX)

<bibtex>
 @article{lin1973,
    author = "Shen Lin and Brian W. Kernighan",
    title = "An Effective Heuristic Algorithm for the Travelling-Salesman Problem",
    journal = "Operations Research",
    volume = 21,
    year = 1973,
    pages = "498-516"
 }
 </bibtex>

Este exemplo será transformado através da Wiki no estilo abaixo:

<bibtex> @article{lin1973,

   author = "Shen Lin and Brian W. Kernighan",
   title = "An Effective Heuristic Algorithm for the Travelling-Salesman Problem",
   journal = "Operations Research",
   volume = 21,
   year = 1973,
   pages = "498-516"
}
</bibtex>

No lugar de aspas duplas pode-se usar também chaves {}.

<bibtex> 
@article{lin1973,
    author = {Shen Lin and Brian W. Kernighan},
    title = {An Effective Heuristic Algorithm for the Travelling-Salesman Problem},
    journal = {Operations Research},
    volume = 21,
    year = 1973,
    pages = "498-516"
 }
 </bibtex>