你能告诉我怎样才能得到更短的线\footnote{}
以及如何得到合适的支架高度吗?
它应该看起来像图片那样。
我的 tex 文档的当前外观:
\documentclass[12pt,leqno,a4paper,notitlepage]{book}
\usepackage[utf8]{inputenc}
\renewcommand*{\thefootnote}{(\arabic{footnote})}
\begin{document}
Wykazemy za Abelem \footnote{ N. H. Abel (1802-1829), matematyk norweski.}
\end{document}]
关联以图片。
答案1
使用屏幕扩展包裹 (KOMA-Script 捆绑包), 取自这问题,我可以为您提供这个。
这屏幕扩展该包使 KOMA-Script 类的一些功能可供其他类使用。
\documentclass{article}
\usepackage{scrextend}
\deffootnotemark{(\textsuperscript{\thefootnotemark})\enskip}
%% Taken from scrguien.pdf
% \deffootnote[mark width ]{indent }{parindent }{definition }
% \deffootnotemark{definition }
% \thefootnotemark
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\blindtext\footnote{Text for footnote.}
\end{document}