我正在尝试使用github制作一个网页。但是当我试图做一个悬挂式的缩进时,我被困住了
我想用apa格式制作一个参考列表。(在正常文本中,而不是在代码中)
A., B., & C., D. (2020, August 1). Name of the paper. Name of the paper Name of the paper
Name of the paper Name of the paper. Journal of ABC. Retrieved from
https://doi.org/1.1.2.2.2./deew/37.4.433我一直在四处张望,但我找不到办法。
最后,这就是我发现的
A., B., & C., D. (2020, August 1). Name of the paper. Name of the paper Name of the paper Name of the paper <br> Name of the paper. Journal of ABC. Retrieved from https://doi.org/1.1.2.2.2./deew/37.4.433
产生以下内容:
A,B,&C,D. (2020,8月1日)。报纸的名字。纸张名称的名称
中转站、中转站.ABC杂志。检索自
https://doi.org/1.1.2.2.2./deew/37.4.433
但我认为这不是一个非常有效的方法。我想知道你有没有更好的主意?谢谢!
如果你需要更多的信息,请告诉我。我还在努力学习github。
发布于 2022-05-07 05:13:21
很抱歉反应迟缓,但这是给其他有同样问题的人的。
您想要的挂起的缩进在某种程度上是在列表项之后看到的处理,在下一行中在文本之前添加空格。
1. List item itself
(space)(space)Hanging indent that is handled to make nice multiline list items
2. Next list item它本身通常是不可能的。在HTML+CSS中,您可以这样做:
<p style="padding-left: 2em; text-indent: -2em;">(a) in relation to an exempt payment service provider mentioned in subsection (1)(a), means any of the following payment services:</p>但并不总是可以在Markdown支持的HTML中使用CSS。
这里已经探讨了一些解决方案。
https://stackoverflow.com/questions/60313094
复制相似问题