脚注格式错误/混乱

脚注格式错误/混乱

我在格式化脚注时遇到了问题。它们看起来很乱,而且完全不对劲。我找不到改变它的方法,但我认为它是某种属性,比如 \usepackage[] 命令或类似命令。我使用在线 Latex 编辑器和编译器 writelatex.com,所以这不是我的编译属性的问题。

有人能告诉我如何解决这个问题吗?这是混乱的脚注的屏幕截图。我用于脚注的命令只是 \footnote{Title。链接:http://www.link.li。 [日期] 脚注格式错误

答案1

网址应使用\url命令输入。这是由url包裹等等。只要地址中没有长串字母,这些字母就会换行,无需采取进一步措施。

脚注的不同格式可以通过以下选项提供:footmisc包裹

示例输出

\documentclass{article}

\usepackage{url}

\usepackage[flushmargin]{footmisc}

\begin{document}

Some text\footnote{Some interesting homepage on the web. Accessible at
\url{http://www.w3.org/standards/webdesign/htmlcss} [12th December,
2009].  More text to demonstrate the shape of the footnote paragraphs.
More text to demonstrate the shape of the footnote paragraphs.

More text to demonstrate the shape of the footnote paragraphs.} and
more text.

Some text\footnote{Some interesting homepage on the web. Accessible at
\url{http://www.w3.org/standards/webdesign/htmlcss} [12th December,
2009].  More text to demonstrate the shape of the footnote paragraphs.
More text to demonstrate the shape of the footnote paragraphs.

More text to demonstrate the shape of the footnote paragraphs.} and
more text.

\end{document}

相关内容