我的restructuredText标记如下所示:
`pybliometrics.scopus.exception.Scopus404Error: NOT FOUND`
The entity you are looking for does not exist. Check that your identifier is still pointing to the item you are looking for.
`pybliometrics.scopus.exception.Scopus414Error: TOO LARGE`
The query string you are using is too long. Break it up in smaller pieces.
.. _Scopus429Error:
`pybliometrics.scopus.exception.Scopus429Error: QUOTA EXCEEDED`
Your provided API key's weekly quota has been depleted. If you provided multiple keys in your :doc:`configuration file <../configuration>`, this means all your keys are depleted. In this case, wait up to week until your API key's quota has been reset.在输出中,我在放置手动_Scopus429Error标记的地方遗漏了一个空行:

对于实时视图,请单击here。
对此我能做些什么呢?我尝试添加一个|,但是结果空间太大了。
发布于 2021-08-12 13:30:21
引用标签将单个定义列表一分为二,并且主题在定义列表的末尾缺少底部填充或边距。您可以将此样式添加到custom.css文件中,并将其作为配置选项html_css_files包含在conf.py中。
custom.css
dl {
margin-bottom: 1em;
}conf.py
html_css_files = ['custom.css']https://stackoverflow.com/questions/68757752
复制相似问题