LaTeX引用参考文献 | Texstudio引用参考文献

图片版教程:
在这里插入图片描述
文字版教程:
ref.bib里面写参考的文献,ref.bib和document.tex要挨着放,同一个目录里面.
解析一下bib文件格式:aboyeji2023effect是引用文献的关键字,需要在正文document.tex里面使用\cite指令引用该关键字

@article{aboyeji2023effect,
	title={Effect of Number of Lanes on Traffic Characteristics of Reinforcement Learning based Autonomous Driving},
	author={Aboyeji, Esther and Ajani, Oladayo S and Mallipeddi, Rammohan},
	journal={IEEE Access},
	year={2023},
	publisher={IEEE}
}

ref.bib的全部内容如下

@phdthesis{de2023convolutional,
	title={Convolutional neural networks for the segmentation of small rodent brain MRI},
	author={De Feo, Riccardo},
	year={2023},
	school={It{\"a}-Suomen yliopisto}
}
@article{aboyeji2023effect,
	title={Effect of Number of Lanes on Traffic Characteristics of Reinforcement Learning based Autonomous Driving},
	author={Aboyeji, Esther and Ajani, Oladayo S and Mallipeddi, Rammohan},
	journal={IEEE Access},
	year={2023},
	publisher={IEEE}
}
@article{medsker2001recurrent,
	title={Recurrent neural networks},
	author={Medsker, Larry R and Jain, LC},
	journal={Design and Applications},
	volume={5},
	number={64-67},
	pages={2},
	year={2001}
}

@article{creswell2018generative,
	title={Generative adversarial networks: An overview},
	author={Creswell, Antonia and White, Tom and Dumoulin, Vincent and Arulkumaran, Kai and Sengupta, Biswa and Bharath, Anil A},
	journal={IEEE signal processing magazine},
	volume={35},
	number={1},
	pages={53--65},
	year={2018},
	publisher={IEEE}
}

document.tex是正文,用的是IEEE模板,删掉了多余的,使用\cite{引用文献关键字}引用bib文件里面的文章,
\bibliography{ref.bib}
\bibliographystyle{plain}
指令指定了bib文件名字,因为默认是bib文件和document.tex挨着放,直接写ref.bib指定引用文件的名字即可!注意,一定要把bib文件的名字写全了!,不能只写ref,要写ref.bib否则加载不出来!
\bibliography{ref.bib}
\bibliographystyle{plain}这两个命令你可以到我下面document.tex里面去找,位置在倒数第八和倒数第七行。这两指令的位置也是会自动定格了Reference的位置,也就是说,这两指令在哪儿,Reference就生成在哪儿!千万别写错位置了!
如下是document.tex的全部内容

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{verbatim}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
		T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}
	
	\title{Conference Paper Title*\\
		{\footnotesize \textsuperscript{*}Note: Sub-titles are not captured in Xplore and
			should not be used}
		\thanks{Identify applicable funding agency here. If none, delete this.}
	}
	
	\author{\IEEEauthorblockN{1\textsuperscript{st} XXX XXX}
		\IEEEauthorblockA{\textit{Department of XXX XXX and XXX} \\
			\textit{XXX}\\
			XXXg, China \\
			XXX@stu.XXX.edu.cn}
		
	}
	
	\maketitle
	
	\begin{abstract}
		This document is a model and instructions for \LaTeX.
		This and the IEEEtran.cls file define the components of your paper [title, text, heads, etc.]. *CRITICAL: Do Not Use Symbols, Special Characters, Footnotes, 
		or Math in Paper Title or Abstract.
	\end{abstract}
	
	\begin{IEEEkeywords}
		component, formatting, style, styling, insert
	\end{IEEEkeywords}
	
	\section{Introduction}
	In the current era of digitalization, the explosive growth of image and video data poses significant challenges to our ability to comprehend visual information.With the continuous evolution of social media, medical imaging, autonomous driving \cite{aboyeji2023effect}and understanding realistic scenes , a profound understanding of images and videos has become a central issue in many fields. Traditional image processing techniques, however, face challenges in handling complex scenes and abstract concepts. This has prompted the demand for higher-level visual understanding and reasoning methods to interpret information within images more accurately and comprehensively.Over the past few years, the development of deep learning technologies has ushered in significant breakthroughs in the field of image processing. Technologies such as Convolutional Neural Networks\cite{de2023convolutional}(CNN), Recurrent Neural Networks\cite{medsker2001recurrent} (RNN), Generative Adversarial Networks\cite{creswell2018generative} (GAN), Attention Mechanism, and Reinforcement Learning have notably advanced tasks like image classification, object detection, and semantic segmentation. Despite their success in localized tasks, challenges persist in achieving higher-level visual understanding and reasoning.This research aims to address key challenges in visual understanding and reasoning, including but not limited to: understanding abstract concepts in images, reasoning across different scenes, and handling ambiguous or uncertain information. These issues not only pose challenges for the visual understanding of ordinary university students but also represent critical problems awaiting solutions in the current field of image processing.This paper proposes a comprehensive approach based on deep learning and knowledge graphs to enhance high-level understanding and reasoning capabilities for images and videos. By combining image feature extraction and semantic knowledge modeling, we aim to build a more holistic and intelligent visual understanding system. Furthermore, the paper explores the incorporation of reinforcement learning techniques during the training process to enhance the system's adaptability to uncertain information. The innovation of this comprehensive approach lies in its consideration of the entire visual reasoning process, pushing image processing towards a more intelligent and comprehensive direction.
	\bibliography{ref.bib}
	\bibliographystyle{plain}

	\vspace{12pt}
	\color{red}
	
\end{document}

视频版教程:
PS:这里网页端会看不见这个链接,因此下面还有一个点击直接访问的连接

视频链接:

🔗:【【LaTeX】LaTeX参考文献管理:用Bib TeX 管理参考文献】

最后
\bibliographystyle{plain}指令解析:

  1. plain,按字母的顺序排列,比较次序为作者、年度和标题
  2. unsrt,样式同plain,只是按照引用的先后排序
  3. alpha,用作者名首字母+年份后两位作标号,以字母顺序排序
  4. abbrv,类似plain,将月份全拼改为缩写,更显紧凑:
  5. ieeetr,国际电气电子工程师协会期刊样式:
  6. acm,美国计算机学会期刊样式:
  7. siam,美国工业和应用数学学会期刊样式:
  8. apalike,美国心理学学会期刊样式:
    如果你的参考文献的顺序不是按照ref.bib文件次序来的,你可以尝试\bibliographystyle{unsrt}指令,也就是在倒数第八行指定
  • 4
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
要在LaTeX中生成参考文献列表,您可以按照以下步骤进行操作: 1. 将模板文件(.bst)和BibTeX文件(.bib)文件存放在LaTeX当前目录下。 2. 使用TexStudio编译源文件(.tex),生成对应的aux文件。 3. 在需要引用参考文献的位置添加参考文献引用的标签,可以使用`\cite{参考文献标签}`的格式。 4. 使用BibTeX编译器编译BibTeX文件,生成对应的bbl文件。 5. 再次编译源文件,关联参考文献,生成参考文献列表。 常见的编译错误解决方法可以根据具体错误信息进行调整。 确保在TexStudio中的设置是正确的,可以通过点击TexStudio菜单的选项-设置-构建来进行设置。 创建tex文件时,需要在导言区添加相应的设置,正文区最后要出现参考文献的地方写入`\bibliography{参考文献文件名}`,而引用参考文献标号的地方使用`\cite{参考文献标签}`进行引用。 创建bib文件时,可以先创建一个txt文件,将从网上下载的参考文献的bibtex内容保存到该txt文件中,然后将该txt文件另存为bib类型,并放到与tex文件相同的目录下。 最后,依次使用快捷键F6、F8、F6、F6来进行编译操作,确保没有缺少任何一个步骤。 如果您需要更多的资源和工具,可以通过网盘下载链接获取包含texlive2019(即latex)、texstudio(编辑器)、JabRef(参考文献编辑器)、jre(jabref的依赖)、latex入门手册的资源。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [LaTeX(使用TexStudio)创建参考文献的方法](https://blog.csdn.net/ljss321/article/details/52599113)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [LaTex-使用texstudio插入参考文献](https://blog.csdn.net/weixin_41692282/article/details/103198609)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [latex相关.txt](https://download.csdn.net/download/qq_26793775/11877726)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

阿维的博客日记

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值