> 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/pl/baza-wiedzy/018-can-i-use-overleaf-with-refworks.md).

# Czy mogę używać Overleaf z RefWorks?

Tak, możesz wyeksportować swoją bibliografię z RefWorks do użycia w Overleaf. Będziesz musiał [zalogować się do RefWorks](https://refworks.proquest.com/), wybrać odwołania, których chcesz użyć, i wyeksportować je jako dane BibTeX zapisane do pliku z `.bib` rozszerzenie.

Aby dodać `.bib` plik do swojego projektu w Overleaf:

* [Prześlij `.bib` plik ręcznie](/latex/pl/baza-wiedzy/088-including-images-on-overleaf.md) do swojego projektu w Overleaf.
* Zapisz go w chmurze (np. Google Drive) i użyj jego adresu URL udostępniania pliku, aby przesłać go do Overleaf.

Poniższe artykuły wyjaśniają, jak przesyłać pliki do Overleaf za pomocą adresów URL udostępniania plików:

* [Jak mogę przesyłać pliki z Google Drive?](/latex/pl/baza-wiedzy/051-how-can-i-upload-files-from-google-drive.md)
* [Jak przesłać plik za pomocą zewnętrznego adresu URL](/latex/pl/baza-wiedzy/081-how-to-upload-a-file-using-an-external-url.md)

### Jak dodać bibliografię do swojego dokumentu

Po przesłaniu swojego `.bib` pliku możesz użyć różnych pakietów bibliograficznych, aby cytować swoje odwołania i składać bibliografię. Poniższy przykład pokazuje [`natbib` pakietu](https://ctan.org/pkg/natbib?lang=en), który jest popularnym wyborem:

```latex
\documentclass{article}  % Użyj standardowej klasy article
\usepackage[numbers]{natbib}  % Załaduj natbib z cytowaniami liczbowymi

\begin{document}

Oto przykład cytowania \citep{sample_ref}. % Zacytuj odwołanie w nawiasach

\bibliographystyle{plainnat}  % Wybierz styl bibliografii
\bibliography{references}  % Użyj pliku .bib o nazwie „references.bib”

\end{document}
```

## Dalsza lektura

Jeśli chcesz bardziej zgłębić tematy związane z używaniem bibliografii w LaTeX, mogą Cię zainteresować następujące artykuły Overleaf:

* [Korzystanie z bibliografii w Overleaf](/latex/pl/baza-wiedzy/145-using-bibliographies-on-overleaf.md)
* [Zarządzanie bibliografią w LaTeX](/latex/pl/wiecej-tematow/05-bibliography-management-in-latex.md)
* [Zarządzanie bibliografią z natbib](/latex/pl/bibliografia-i-cytowania/02-bibliography-management-with-natbib.md)
* [Zarządzanie bibliografią z biblatex](/latex/pl/bibliografia-i-cytowania/03-bibliography-management-with-biblatex.md)
* [Zarządzanie bibliografią za pomocą BibTeX](/latex/pl/bibliografia-i-cytowania/01-bibliography-management-with-bibtex.md)
* [Jak wyszukiwać odwołania w projekcie Overleaf](/latex/pl/baza-wiedzy/076-how-to-search-for-references-in-an-overleaf-project.md)
* [Jak połączyć Mendeley ze swoim kontem Overleaf](/latex/pl/baza-wiedzy/070-how-to-link-mendeley-to-your-overleaf-account.md)
* [Jak połączyć Zotero ze swoim kontem Overleaf](/latex/pl/baza-wiedzy/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/pl/baza-wiedzy/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.
