각주에 기호를 사용하도록 강제하는 패키지 또는 옵션은 무엇입니까?

각주에 기호를 사용하도록 강제하는 패키지 또는 옵션은 무엇입니까?

각주에는 기본적으로 번호가 매겨져 있다고 읽었지만 제 경우에는 기본적으로 기호를 사용하고 기호가 꽤 보기 흉합니다. 어떤 경우에는 다음 문자와 겹칩니다.

내 문서에서 기본적으로 아라비아 숫자가 사용되지 않는 이유는 무엇이며 \renewcommand{\thefootnote}{\arabic{footnote}}아무것도 변경되지 않는 이유는 무엇입니까? 컴파일을 방해하지 않는데 패키지를 하나씩 비활성화하려고 시도했지만 실패했습니다.

내 문서의 헤더는 다음과 같습니다.

\documentclass[a4paper,10pt]{article}

% En-tête et pied de page
\usepackage{fancyhdr}
\usepackage{lastpage}
\pagestyle{fancy}
\lhead{\textbf{S}mall \textbf{PA}rticle \textbf{DE}tection}
\rhead{\leftmark}
\cfoot{Page \thepage/\pageref*{LastPage}}

% page de garde
\usepackage{titling}

% biblio dans la table de matières
\usepackage[nottoc,numbib]{tocbibind}

% symbole TM
\usepackage{textcomp}

% mots clefs
\providecommand{\keywords}[1]{\textbf{\textit{Mot-clefs---}} #1}

% remerciements
\providecommand{\merci}[1]{\textbf{\textit{Remerciements---}} #1}

% Langue
\usepackage[english,frenchb]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\DeclareMathSymbol{.}{\mathord}{letters}{"3B}
\addto\captionsfrench{\def\tablename{Tableau}}

% Pseudo-code
\usepackage[french,onelanguage,ruled,linesnumbered,vlined,titlenotnumbered]{algorithm2e}
\newcommand{\dans}{\upshape\textbf{dans}}
\newcommand{\mettre}{\upshape\textbf{mettre}}
\SetKwInput{KwOut}{Sortie}
\renewcommand{\thealgocf}{} % non numéroté

% Biblio
\usepackage{cell}

% Figures
\usepackage[font={footnotesize}]{caption}
\usepackage[font={footnotesize}]{subcaption}
\usepackage{graphicx}

% Tableau depuis csv
\usepackage{pgfplotstable}
\usepackage{colortbl}

% Liens hypertextes
\usepackage[hidelinks]{hyperref}
\usepackage{xcolor}
\hypersetup{
    colorlinks,
    linkcolor={red!50!black},
    citecolor={blue!50!black},
    urlcolor={blue!80!black}
}

\renewcommand{\thefootnote}{\arabic{footnote}}

편집: 각주를 깨뜨린 것은 내가 \postauthor사용하지 않고 사용했다는 사실이 밝혀졌습니다 \preauthor. 내가 받아들인 솔루션보다 수정이 더 쉽습니다.

답변1

footmisc옵션이 있는 패키지를 사용하십시오 symbols*. IOt는 perpage옵션을 활성화합니다. 를 사용하여 자신만의 기호 목록을 활성화하고 \DefineFNSymbols{mysymbolslist}{…}와 함께 사용할 수 있습니다 \setfnsymbol{mysymbolslist}. 자세한 내용은 설명서의 §§ 1.5–1.7을 참조하세요.

관련 정보