我有四个小脚注。我希望前两个脚注出现在不同的行中,最后一个脚注出现在同一行中。当我尝试时\usepackage[para]{footmisc}
,它们都出现在一行中。
梅威瑟:
\documentclass{article}
\usepackage[para]{footmisc}
\begin{document}
Some text.\footnote{FN1.\\}
Some text.\footnote{FN2.\\}
Some text.\footnote{FN3.}
Some text.\footnote{FN4.}
\end{document}
2
这表明(注意和之前的空格3
):
1 FT1.
2 FT2.
3 FT3. 4 FT4.
我需要的是:
1 FT1.
2 FT2.
3 FT3. 4 FT4.
答案1
那样有用吗?
\documentclass{article}
\usepackage[para]{footmisc}
\begin{document}
Some text.\footnotemark[1]
Some text.\footnotemark[2]
Some text.\footnotemark[3]
Some text.\footnotemark[4]
\footnotetext[1]{FN1.\\}
\footnotetext[2]{FN2.\\}
\footnotetext[3]{FN3.} \footnotetext[4]{FN4.}
\end{document}