翔翔の据点

Arrogance is the only obstacle to survival. Not weakness or ignorance.

0%

latex文献引用

参考文献可以在文中显示,或者在文章结束显示

写在前面

latex编写软件:TexMaker

他有个很方便的功能:快速构建,但需要配置好

image-20210714204327561

配置成这样才能正常使用文献引用的功能~

case1 文中

这种用的不是很多,只是在周报这些地方用下。

直接上例子:

image-20210714204432277

这是代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
% !Mode:: "TeX:UTF-8"
\documentclass{article}
\usepackage[UTF8]{ctex}
\usepackage{titlesec}
\usepackage[margin=1.2in]{geometry}
\usepackage[toc,page]{appendix}
\usepackage{graphicx}
\usepackage{float}
\usepackage{subfigure}
\usepackage[subfigure]{tocloft}
\usepackage[square,numbers]{natbib}
\usepackage{lipsum}
\usepackage{caption}
\usepackage{pdfpages}
\usepackage[colorlinks,linkcolor=red]{hyperref}
\usepackage{bibentry}
\usepackage{amsmath}
\usepackage{multirow}
\usepackage{CJKulem}
\usepackage{booktabs}
\usepackage{color}
\usepackage{url}
\usepackage{microtype}
% 加了microtype之后没有badbox的warning了
\nobibliography*
% 这里是重点,必须no才能不在文末显示

\newcommand\listexamplename{周报目录}
\newlistof{exam}{ex}{\listexamplename}
\newenvironment{weekReport}{
\refstepcounter{exam}
}{\par}
\newcommand{\exam}[1]{%
\addcontentsline{ex}{exam}{\protect\numberline{\theexam}#1}\par
}

\begin{document}
\begin{center}
\listofexam
\thispagestyle{empty}
\end{center}
\newpage
\pagenumbering{arabic}

\begin{center}
\Large \bfseries 计划表

% Table generated by Excel2LaTeX from sheet 'Sheet1'
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|}
\hline
阶段 & 安排 & 任务进度 \\ \hline
\multirow{1}{*}{03月01日-03月07日}
& 写一篇博客 & 完成 \\ \cline{2-3}

\hline
\multirow{1}{*}{03月08日-03月15日}
& eat & 完成 \\ \cline{2-3}
& sleep & 完成 \\ \cline{2-3}
& CODE!! & 完成 \\ \cline{2-3}

\hline
\end{tabular}%
\label{tab:addlabel}%
\end{table}%
\end{center}
\clearpage

% ------------------------- 第二十周 -------------------------
\begin{center}
\Large 2020-2021学年 春
\begin{weekReport}\exam{2020-2021学年·春·第20周(7月12日-7月18日)}
\Large \bfseries 第20周(7月12日-7月18日)
\end{weekReport}
\end{center}

\setcounter{section}{0}
\setcounter{figure}{0}
\setcounter{subfigure}{0}

\section{总体情况}
\begin{itemize}
\item 对博弈模型展开表示,并用latex编写;
\item 对代码进行重构;
\item 将EPEC博士论文中的方法,映射到本模型;
\item 得到求近似解的方法;
\item 学习求解器使用方法,将该求近似解的方法使用python实现;
\end{itemize}

\section{论文阅读}
\begin{itemize}
\item \bibentry{2005Equilibrium}
\end{itemize}

\section{代码编写}
\begin{itemize}
\item 对代码进行重构,修改充电桩数量时,不必改动多处,仅需在config中修改即可
\end{itemize}

\section{下阶段安排}
暂无

\section{存在困难}
暂无

\section{具体内容}
\begin{itemize}
\item 前面的区域,以后再来探索吧QAQ
\end{itemize}
\clearpage

% 设置参考文献格式
\bibliographystyle{IEEETran}
% 这里是重点,必须no才能不在文末显示
\nobibliography{references}
\end{document}

bib文件

新建一个bib后缀的文件(如reference.bib),放在和tex文件同级目录

ps:不知道为什么,从dblp上复制的BibTex就会报错(xx ended before xxx),从谷歌学术那边的就不会

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
% 第二十周
@phdthesis{2005Equilibrium,
title={Equilibrium problems with equilibrium constraints: stationarities, algorithms, and applications},
author={ Su, C. L. },
school={Stanford University.},
year={2005},
}

% 第五周
@article{zhao2020go,
title={Where to go next: A spatio-temporal gated network for next poi recommendation},
author={Zhao, Pengpeng and Luo, Anjing and Liu, Yanchi and Zhuang, Fuzhen and Xu, Jiajie and Li, Zhixu and Sheng, Victor S and Zhou, Xiaofang},
journal={IEEE Transactions on Knowledge and Data Engineering},
year={2020},
publisher={IEEE}
}

% 第四周
@inproceedings{wu2020joint,
title={Joint item recommendation and attribute inference: An adaptive graph convolutional network approach},
author={Wu, Le and Yang, Yonghui and Zhang, Kun and Hong, Richang and Fu, Yanjie and Wang, Meng},
booktitle={Proceedings of the 43rd International ACM SIGIR Conference on Research and Development in Information Retrieval},
pages={679--688},
year={2020}
}

case2 文末

还没研究。不过这种引用比较正常,用的人也很多,网上也有很多教程。

-------------------------- the end~    thanks for your reading~ --------------------------