脚注のフォーマットが間違っている/乱雑である

脚注のフォーマットが間違っている/乱雑である

脚注の書式設定に問題があります。見た目が非常に乱雑で、間違っているように見えます。変更する方法が見つかりませんでしたが、\usepackage[] コマンドなどの何らかのプロパティが原因だと思います。私はオンラインの Latex エディタとコンパイラ writelatex.com を使用しているので、コンパイル プロパティの問題ではないはずです。

この問題を修正するヒントを誰か教えてください。乱雑な脚注のスクリーンショットを以下に示します。脚注に使用するコマンドは、\footnote{Title. Link: だけです。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}

関連情報