> 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/id/basis-pengetahuan/018-can-i-use-overleaf-with-refworks.md).

# Dapatkah saya menggunakan Overleaf dengan RefWorks?

Ya, Anda dapat mengekspor bibliografi Anda dari RefWorks untuk digunakan di Overleaf. Anda perlu [masuk ke RefWorks](https://refworks.proquest.com/), pilih referensi yang ingin Anda gunakan, dan ekspor sebagai data BibTeX yang disimpan ke file dengan sebuah `.bib` ekstensi.

Untuk menambahkan `.bib` file ke proyek Overleaf Anda:

* [Unggah `.bib` file secara manual](/latex/id/basis-pengetahuan/088-including-images-on-overleaf.md) ke proyek Overleaf Anda.
* Simpan ke penyimpanan cloud (mis., Google Drive) dan gunakan URL berbagi filenya untuk mengunggahnya ke Overleaf.

Artikel berikut menjelaskan cara mengunggah file ke Overleaf menggunakan URL berbagi file:

* [Bagaimana cara mengunggah file dari Google Drive?](/latex/id/basis-pengetahuan/051-how-can-i-upload-files-from-google-drive.md)
* [Cara mengunggah file menggunakan URL eksternal](/latex/id/basis-pengetahuan/081-how-to-upload-a-file-using-an-external-url.md)

### Cara menambahkan bibliografi ke dokumen Anda

Setelah mengunggah `.bib` file, Anda dapat menggunakan berbagai paket bibliografi untuk mengutip referensi Anda dan menata bibliografi. Contoh berikut menunjukkan [`natbib` ke preambel dokumen Anda (seperti disarankan](https://ctan.org/pkg/natbib?lang=en), yang merupakan pilihan umum:

```latex
\documentclass{article}  % Gunakan kelas artikel standar
\usepackage[numbers]{natbib}  % Muat natbib dengan sitasi numerik

\begin{document}

Berikut contoh sitasi \citep{sample_ref}. % Sitasi referensi dalam tanda kurung

\bibliographystyle{plainnat}  % Pilih gaya bibliografi
\bibliography{references}  % Gunakan file .bib bernama "references.bib"

\end{document}
```

## Bacaan lanjutan

Jika Anda ingin lebih jauh menjelajahi topik yang berkaitan dengan penggunaan bibliografi di LaTeX, artikel Overleaf berikut mungkin menarik bagi Anda:

* [Menggunakan bibliografi di Overleaf](/latex/id/basis-pengetahuan/145-using-bibliographies-on-overleaf.md)
* [Manajemen bibliografi di LaTeX](/latex/id/topik-lainnya/05-bibliography-management-in-latex.md)
* [Pengelolaan bibliografi dengan natbib](/latex/id/referensi-dan-sitasi/02-bibliography-management-with-natbib.md)
* [Pengelolaan bibliografi dengan biblatex](/latex/id/referensi-dan-sitasi/03-bibliography-management-with-biblatex.md)
* [Manajemen bibliografi dengan BibTeX](/latex/id/referensi-dan-sitasi/01-bibliography-management-with-bibtex.md)
* [Cara mencari referensi dalam proyek Overleaf](/latex/id/basis-pengetahuan/076-how-to-search-for-references-in-an-overleaf-project.md)
* [Cara menautkan Mendeley ke akun Overleaf Anda](/latex/id/basis-pengetahuan/070-how-to-link-mendeley-to-your-overleaf-account.md)
* [Cara menautkan Zotero ke akun Overleaf Anda](/latex/id/basis-pengetahuan/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/id/basis-pengetahuan/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.
