> 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/es/mas-temas/17-graham-biblatex-demo.md).

# Demostración de Graham biblatex

Sí, puede exportar su bibliografía desde RefWorks para usarla en Overleaf. Necesitará [iniciar sesión en RefWorks](https://refworks.proquest.com/), seleccionar las referencias que desee usar y exportarlas como datos BibTeX guardados en un archivo con un `.bib` extensión.

Para añadir el `.bib` archivo a su proyecto de Overleaf:

* [Cargue el `.bib` archivo manualmente](/latex/es/base-de-conocimientos/088-including-images-on-overleaf.md) en su proyecto de Overleaf.
* Guárdelo en el almacenamiento en la nube (por ejemplo, Google Drive) y use su URL para compartir el archivo para cargarlo en Overleaf.

Los siguientes artículos explican cómo cargar archivos en Overleaf usando URL para compartir archivos:

* [¿Cómo puedo cargar archivos desde Google Drive?](/latex/es/base-de-conocimientos/051-how-can-i-upload-files-from-google-drive.md)
* [Cómo cargar un archivo usando una URL externa](/latex/es/base-de-conocimientos/081-how-to-upload-a-file-using-an-external-url.md)

### Cómo añadir una bibliografía a su documento

Después de cargar su `.bib` archivo, puede usar varios paquetes de bibliografía para citar sus referencias y generar una bibliografía. El siguiente ejemplo demuestra el [`natbib` paquete](https://ctan.org/pkg/natbib?lang=en), que es una opción común:

```latex
\documentclass{article}  % Usar la clase estándar article
\usepackage[numbers]{natbib}  % Cargar natbib con citas numéricas

\begin{document}

Aquí hay un ejemplo de cita \citep{sample_ref}. % Citar una referencia entre paréntesis

\bibliographystyle{plainnat}  % Elegir un estilo bibliográfico
\bibliography{references}  % Usar el archivo .bib llamado "references.bib"

\end{document}
```

## Lectura adicional

Si desea explorar más a fondo temas relacionados con el uso de bibliografías en LaTeX, los siguientes artículos de Overleaf pueden ser de interés:

* [Uso de bibliografías en Overleaf](/latex/es/base-de-conocimientos/145-using-bibliographies-on-overleaf.md)
* [Gestión de bibliografía en LaTeX](/latex/es/mas-temas/05-bibliography-management-in-latex.md)
* [Gestión bibliográfica con natbib](/latex/es/referencias-y-citas/02-bibliography-management-with-natbib.md)
* [Gestión bibliográfica con biblatex](/latex/es/referencias-y-citas/03-bibliography-management-with-biblatex.md)
* [Gestión de bibliografía con BibTeX](/latex/es/referencias-y-citas/01-bibliography-management-with-bibtex.md)
* [Cómo buscar referencias en un proyecto de Overleaf](/latex/es/base-de-conocimientos/076-how-to-search-for-references-in-an-overleaf-project.md)
* [Cómo vincular Mendeley a su cuenta de Overleaf](/latex/es/base-de-conocimientos/070-how-to-link-mendeley-to-your-overleaf-account.md)
* [Cómo vincular Zotero a su cuenta de Overleaf](/latex/es/base-de-conocimientos/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/es/mas-temas/17-graham-biblatex-demo.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.
