> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/latex/overleaf-learn-latex-pt/base-de-conhecimento/018-can-i-use-overleaf-with-refworks.md).

# Posso usar o Overleaf com o RefWorks?

Sim, pode exportar a sua bibliografia do RefWorks para usar no Overleaf. Vai precisar de [iniciar sessão no RefWorks](https://refworks.proquest.com/), selecionar as referências que pretende usar e exportá-las como dados BibTeX guardados num ficheiro com uma `.bib` extensão.

Para adicionar o `.bib` ficheiro ao seu projeto Overleaf:

* [Envie o `.bib` ficheiro manualmente](/latex/overleaf-learn-latex-pt/base-de-conhecimento/088-including-images-on-overleaf.md) para o seu projeto Overleaf.
* Guarde-o num armazenamento na nuvem (por exemplo, Google Drive) e use o URL de partilha do ficheiro para o enviar para o Overleaf.

Os seguintes artigos explicam como enviar ficheiros para o Overleaf usando URLs de partilha de ficheiros:

* [Como posso enviar ficheiros do Google Drive?](/latex/overleaf-learn-latex-pt/base-de-conhecimento/051-how-can-i-upload-files-from-google-drive.md)
* [Como enviar um ficheiro usando um URL externo](/latex/overleaf-learn-latex-pt/base-de-conhecimento/081-how-to-upload-a-file-using-an-external-url.md)

### Como adicionar uma bibliografia ao seu documento

Depois de enviar o seu `.bib` ficheiro, pode usar vários pacotes de bibliografia para citar as suas referências e compor uma bibliografia. O exemplo seguinte demonstra o [`natbib` pacote](https://ctan.org/pkg/natbib?lang=en), que é uma escolha comum:

```latex
\documentclass{article}  % Use a classe padrão article
\usepackage[numbers]{natbib}  % Carregue o natbib com citações numéricas

\begin{document}

Aqui está um exemplo de citação \citep{sample_ref}. % Cite uma referência entre parênteses

\bibliographystyle{plainnat}  % Escolha um estilo de bibliografia
\bibliography{references}  % Use o ficheiro .bib chamado "references.bib"

\end{document}
```

## Leitura adicional

Se quiser explorar mais temas relacionados com a utilização de bibliografias em LaTeX, os seguintes artigos do Overleaf podem ser do seu interesse:

* [Utilizar bibliografias no Overleaf](/latex/overleaf-learn-latex-pt/base-de-conhecimento/145-using-bibliographies-on-overleaf.md)
* [Gestão de bibliografia em LaTeX](/latex/overleaf-learn-latex-pt/mais-topicos/05-bibliography-management-in-latex.md)
* [Gestão de bibliografia com natbib](/latex/overleaf-learn-latex-pt/referencias-e-citacoes/02-bibliography-management-with-natbib.md)
* [Gestão de bibliografia com biblatex](/latex/overleaf-learn-latex-pt/referencias-e-citacoes/03-bibliography-management-with-biblatex.md)
* [Gestão de bibliografia com BibTeX](/latex/overleaf-learn-latex-pt/referencias-e-citacoes/01-bibliography-management-with-bibtex.md)
* [Como pesquisar referências num projeto Overleaf](/latex/overleaf-learn-latex-pt/base-de-conhecimento/076-how-to-search-for-references-in-an-overleaf-project.md)
* [Como ligar o Mendeley à sua conta Overleaf](/latex/overleaf-learn-latex-pt/base-de-conhecimento/070-how-to-link-mendeley-to-your-overleaf-account.md)
* [Como ligar o Zotero à sua conta Overleaf](/latex/overleaf-learn-latex-pt/base-de-conhecimento/073-how-to-link-zotero-to-your-overleaf-account.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://overleaf-pro.ayaka.space/latex/overleaf-learn-latex-pt/base-de-conhecimento/018-can-i-use-overleaf-with-refworks.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
