> 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/ja/narejjibsu/018-can-i-use-overleaf-with-refworks.md).

# OverleafをRefWorksと併用できますか？

はい、Overleafで使用するためにRefWorksから参考文献リストをエクスポートできます。必要なのは [RefWorksにログインすることです](https://refworks.proquest.com/)、使用したい参考文献を選択し、ファイルとして保存されたBibTeXデータとしてエクスポートします。 `.bib` 拡張子があります。

以下を追加するには `.bib` ファイルをOverleafプロジェクトに：

* [次の `.bib` ファイルを手動でアップロード](/latex/ja/narejjibsu/088-including-images-on-overleaf.md) Overleafプロジェクトに。
* クラウドストレージ（例：Google Drive）に保存し、そのファイル共有URLを使ってOverleafにアップロードします。

以下の記事では、ファイル共有URLを使ってOverleafにファイルをアップロードする方法を説明しています：

* [Google Driveからファイルをアップロードするには？](/latex/ja/narejjibsu/051-how-can-i-upload-files-from-google-drive.md)
* [外部URLを使ってファイルをアップロードする方法](/latex/ja/narejjibsu/081-how-to-upload-a-file-using-an-external-url.md)

### 文書に参考文献リストを追加する方法

次の `.bib` ファイルをアップロードした後、さまざまな参考文献パッケージを使って文献を引用し、参考文献リストを組版できます。以下の例では次の [`natbib` パッケージを](https://ctan.org/pkg/natbib?lang=en)、これは一般的によく使われる選択肢です：

```latex
\documentclass{article}  % 標準の article クラスを使用
\usepackage[numbers]{natbib}  % 数値引用付きで natbib を読み込む

\begin{document}

ここに引用例 \citep{sample_ref} があります。% 参照文献をかっこ付きで引用

\bibliographystyle{plainnat}  % 参考文献スタイルを選択
\bibliography{references}  % "references.bib" という名前の .bib ファイルを使用

\end{document}
```

## さらに読む

LaTeX で参考文献を使うことに関連するトピックをさらに探りたい場合、次の Overleaf の記事が参考になるかもしれません。

* [Overleaf で参考文献を使う](/latex/ja/narejjibsu/145-using-bibliographies-on-overleaf.md)
* [LaTeX における参考文献管理](/latex/ja/sononotopikku/05-bibliography-management-in-latex.md)
* [natbib を使った参考文献管理](/latex/ja/to-1/02-bibliography-management-with-natbib.md)
* [biblatex を使った参考文献管理](/latex/ja/to-1/03-bibliography-management-with-biblatex.md)
* [BibTeX を使った参考文献管理](/latex/ja/to-1/01-bibliography-management-with-bibtex.md)
* [Overleaf プロジェクト内で参照を検索する方法](/latex/ja/narejjibsu/076-how-to-search-for-references-in-an-overleaf-project.md)
* [Mendeley を Overleaf アカウントにリンクする方法](/latex/ja/narejjibsu/070-how-to-link-mendeley-to-your-overleaf-account.md)
* [Zotero を Overleaf アカウントにリンクする方法](/latex/ja/narejjibsu/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/ja/narejjibsu/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.
