> 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/ar/alaselh-walajwbh/69-in-the-ieee-for-journals-template-i-m-trying-to-use-bibtex-for-my-references.md).

# في قالب IEEE للمجلات، أحاول استخدام bibtex للمراجع الخاصة بي

يطلب العديد من المؤلفين الذين يستخدمون أحد قوالب مجلات IEEE المساعدة في إضافة مراجعهم باستخدام bibtex. وعلى وجه الخصوص، بعد رفع الملفين IEEEexample.bib و IEEEabrv.bib إلى مجلد bibtex/bib، قد يكون من الصعب جعل المستند ينجح في الترجمة. فيما يلي تجميع لإجاباتنا التي نأمل أن تساعدك إذا كنت في موقف مشابه، وهي تنتهي بمثال يمكنك استخدامه كقالب للبدء.

أولًا، إذا كنت قد رفعت الملفين IEEEtran.cls و IEEEtran.bst، فمن المستحسن حذفهما، لأنهما مدمجان بالفعل في writeLaTeX—لست بحاجة إلى تضمينهما في مشروعك، وعادةً ما يكون من الأفضل استخدام النسخة المدمجة.

إذا كنت بحاجة إلى إنشاء مجلد bibtex/bib، فيمكنك القيام بذلك عبر قائمة Project في المحرر—بعد فتح القائمة، تكون أيقونات إنشاء المجلدات والملفات في أعلى اليمين.

تأتي قائمة المراجع التي ينشئها bibtex من الأمرين \bibliography و \bibliographystyle، وبافتراض أنك تستخدم الملفين IEEEexample.bib و IEEEabrv.bib في مجلد bibtex/bib، فيجب تغيير هذين الأمرين إلى:

```latex
\bibliography{bibtex/bib/IEEEabrv.bib,bibtex/bib/IEEEexample.bib}{}
\bibliographystyle{IEEEtran}
```

يخبر هذا bibtex بتحميل ملفي .bib واستخدام نمط مراجع IEEEtran لتنسيق المراجع.

ملاحظة: كانت الأوامر الأصلية في القالب هي:

```latex
\bibliography{mybib.bib}{}
\bibliographystyle{plain}
```

وهذا كان يخبر bibtex أنك تريد استخدام ملف يسمى mybib.bib للمراجع، مع النمط البسيط (المدمج).

وأخيرًا، من الأخطاء الشائعة التي تحدث بعد إعداد كل هذا هو عدم وجود أمر \cite في المستند يشير إلى أي من السجلات الموجودة في ملف bib. في المثال أدناه أضفنا أحدها من IEEEexample.bib:

```latex
\cite{IEEEhowto:IEEEtranpage}
```

ليتمكن من الترجمة. ستحتاج إلى حذفه بمجرد أن تبدأ في إضافة اقتباساتك الخاصة.

[هذا هو المثال على Overleaf، وهو جاهز ومعدّ للاستخدام.](https://www.overleaf.com/latex/templates/ieee-for-journals-template-with-bibtex-example-files-included/hjbyjvncdmpx)

لمزيد من المعلومات حول bibtex، نوصي بكتاب LaTeX wikibook \[[فصل إدارة المراجع](http://en.wikibooks.org/wiki/LaTeX/Bibliography_Management)].


---

# 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/ar/alaselh-walajwbh/69-in-the-ieee-for-journals-template-i-m-trying-to-use-bibtex-for-my-references.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.
