> 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/zh-cn/zhi-shi-ku/018-can-i-use-overleaf-with-refworks.md).

# 我可以在 Overleaf 中使用 RefWorks 吗？

是的，您可以将 RefWorks 中的参考文献导出以用于 Overleaf。您需要 [登录 RefWorks](https://refworks.proquest.com/)，选择您想使用的参考文献，并将它们导出为 BibTeX 数据，保存为一个带有 `.bib` 扩展名。

要将 `.bib` 文件添加到您的 Overleaf 项目中：

* [上传 `.bib` 文件，手动](/latex/zh-cn/zhi-shi-ku/088-including-images-on-overleaf.md) 到您的 Overleaf 项目。
* 将其保存到云存储（例如 Google Drive）中，并使用其文件共享 URL 将其上传到 Overleaf。

以下文章说明了如何使用文件共享 URL 将文件上传到 Overleaf：

* [如何从 Google Drive 上传文件？](/latex/zh-cn/zhi-shi-ku/051-how-can-i-upload-files-from-google-drive.md)
* [如何使用外部 URL 上传文件](/latex/zh-cn/zhi-shi-ku/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/zh-cn/zhi-shi-ku/145-using-bibliographies-on-overleaf.md)
* [LaTeX 中的参考文献管理](/latex/zh-cn/geng-duo-zhu-ti/05-bibliography-management-in-latex.md)
* [使用 natbib 进行参考文献管理](/latex/zh-cn/can-kao-wen-xian-he-yin-yong/02-bibliography-management-with-natbib.md)
* [使用 biblatex 进行参考文献管理](/latex/zh-cn/can-kao-wen-xian-he-yin-yong/03-bibliography-management-with-biblatex.md)
* [使用 BibTeX 管理参考文献](/latex/zh-cn/can-kao-wen-xian-he-yin-yong/01-bibliography-management-with-bibtex.md)
* [如何在 Overleaf 项目中搜索参考文献](/latex/zh-cn/zhi-shi-ku/076-how-to-search-for-references-in-an-overleaf-project.md)
* [如何将 Mendeley 链接到你的 Overleaf 账户](/latex/zh-cn/zhi-shi-ku/070-how-to-link-mendeley-to-your-overleaf-account.md)
* [如何将 Zotero 链接到你的 Overleaf 账户](/latex/zh-cn/zhi-shi-ku/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/zh-cn/zhi-shi-ku/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.
