提问于:
浏览数:
2543
## 编译环境
操作系统
* [x] Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [2019] TexLive `年份`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
请问如何缩短参考文献各条之间的行间距
1 回答
0
如果你是用了 natbib 宏包可以这样定义:
```
\setlength{\bibsep}{0pt plus 0.3ex}
```
也可以:
```
\let\oldthebibliography=\thebibliography
\let\endoldthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{%
\begin{oldthebibliography}{#1}%
\setlength{\parskip}{0ex}%
\setlength{\itemsep}{0ex}%
}%
{%
\end{oldthebibliography}%
}
```
-
请问{0pt plus 0.3ex}长度是多少? – 罗二斯 2021-02-28 10:14 回复
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。