> 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/it/base-di-conoscenza/018-can-i-use-overleaf-with-refworks.md).

# Posso usare Overleaf con RefWorks?

Sì, puoi esportare la tua bibliografia da RefWorks per usarla in Overleaf. Dovrai [accedere a RefWorks](https://refworks.proquest.com/), selezionare i riferimenti che desideri usare ed esportarli come dati BibTeX salvati in un file con un `.bib` estensione.

Per aggiungere il `.bib` file al tuo progetto Overleaf:

* [Carica il `.bib` file manualmente](/latex/it/base-di-conoscenza/088-including-images-on-overleaf.md) nel tuo progetto Overleaf.
* Salvalo in uno spazio di archiviazione cloud (ad es., Google Drive) e usa il relativo URL di condivisione del file per caricarlo su Overleaf.

I seguenti articoli spiegano come caricare file su Overleaf usando URL di condivisione del file:

* [Come posso caricare file da Google Drive?](/latex/it/base-di-conoscenza/051-how-can-i-upload-files-from-google-drive.md)
* [Come caricare un file usando un URL esterno](/latex/it/base-di-conoscenza/081-how-to-upload-a-file-using-an-external-url.md)

### Come aggiungere una bibliografia al tuo documento

Dopo aver caricato il tuo `.bib` file, puoi usare vari pacchetti bibliografici per citare i tuoi riferimenti e comporre una bibliografia. Il seguente esempio mostra il [`natbib` pacchetto](https://ctan.org/pkg/natbib?lang=en), che è una scelta comune:

```latex
\documentclass{article}  % Usa la classe standard article
\usepackage[numbers]{natbib}  % Carica natbib con citazioni numeriche

\begin{document}

Ecco un esempio di citazione \citep{sample_ref}. % Cita un riferimento tra parentesi

\bibliographystyle{plainnat}  % Scegli uno stile bibliografico
\bibliography{references}  % Usa il file .bib chiamato "references.bib"

\end{document}
```

## Letture aggiuntive

Se desideri esplorare ulteriormente argomenti relativi all'uso delle bibliografie in LaTeX, i seguenti articoli di Overleaf potrebbero interessarti:

* [Usare bibliografie su Overleaf](/latex/it/base-di-conoscenza/145-using-bibliographies-on-overleaf.md)
* [Gestione della bibliografia in LaTeX](/latex/it/altri-argomenti/05-bibliography-management-in-latex.md)
* [Gestione della bibliografia con natbib](/latex/it/riferimenti-e-citazioni/02-bibliography-management-with-natbib.md)
* [Gestione della bibliografia con biblatex](/latex/it/riferimenti-e-citazioni/03-bibliography-management-with-biblatex.md)
* [Gestione della bibliografia con BibTeX](/latex/it/riferimenti-e-citazioni/01-bibliography-management-with-bibtex.md)
* [Come cercare riferimenti in un progetto Overleaf](/latex/it/base-di-conoscenza/076-how-to-search-for-references-in-an-overleaf-project.md)
* [Come collegare Mendeley al tuo account Overleaf](/latex/it/base-di-conoscenza/070-how-to-link-mendeley-to-your-overleaf-account.md)
* [Come collegare Zotero al tuo account Overleaf](/latex/it/base-di-conoscenza/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/it/base-di-conoscenza/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.
