答案1
这只有在使用“每页”脚注编号时才有效。接下来,必须修改标记的排版。
\documentclass{article}
\usepackage[perpage]{footmisc}
\usepackage{etoolbox}
% three should be sufficient
\DefineFNsymbols*{asterisks}{*{**}{***}}
\setfnsymbol{asterisks}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
% we want a nonbreaking space before the marker in text
\preto\footnote{\unskip~}
% we want the marker normal size and not superscripted, with )
\makeatletter
\renewcommand{\@makefnmark}{\mbox{\normalfont\@thefnmark})}
\settowidth{\footnotemargin}{***) }
\patchcmd{\@makefntext}{\hss\@makefnmark}{\hss \@makefnmark\ }{}{}
\makeatother
\textheight=2cm % just for the example
\begin{document}
First footnote\footnote{Some long text that should wrap
across at least two lines; just add text just add text
just add text just add text just add text.}.
Now another footnote just to see what happens\footnote{Try this.}.
\end{document}
答案2
下面是一个设置(目前仅\textasteriskcentered
提供*
、**
)并使用。***
footmisc
有一wiley
组footmisc
,其中 已经有*
,**
但是没有***
,如果需要的话。
\documentclass{article}
\usepackage[symbol]{footmisc}
\DefineFNsymbols*{asterisks}{\textasteriskcentered{\textasteriskcentered\textasteriskcentered}{\textasteriskcentered\textasteriskcentered\textasteriskcentered}}
\let\origthefootnote\thefootnote
\renewcommand{\thefootnote}{\origthefootnote)}
\begin{document}
\setfnsymbol{asterisks}
A footnote on foo\footnote{foo} and another footnote on foobar\footnote{foobar} and yet another one\footnote{foobar foo}
\end{document}
答案3
我不太明白你的问题,所以我会回答所有可能的答案:)
如果您想问如何制作脚注,那么答案是使用命令
\footnote{A strange russian footnote}
如果你的意思是问如何在脚注中使用符号而不是数字,那么答案就是在序言中添加以下内容
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
如果你的意思是问如何使用 *) 然后 **) 作为脚注符号,答案(如给出的这里)你必须在序言中添加以下内容
\def\@fnsymbol#1{\ensuremath{\ifcase#1\or *)\or \or **) \or ***) \or
\dagger\or \ddagger\or \mathsection\or \mathparagraph\or \|\or \dagger\dagger
\or \ddagger\ddagger \else\@ctrerr\fi}}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}