패키지 footmisc에 대한 옵션 충돌

패키지 footmisc에 대한 옵션 충돌

각주를 아래로 이동하기 위해 footmisc 패키지를 사용하려고 하는데 옵션 충돌을 중지하는 방법을 평생 알 수 없습니다.

내 문서의 전문은 다음과 같습니다.

\documentclass[11pt]{article}
\setlength{\parindent}{0in}
\setlength{\parskip}{0.8em}
\renewcommand{\baselinestretch}{1.15}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{amsmath}
\allowdisplaybreaks
\DeclareMathOperator\arcsinh{arcsinh}
\usepackage{mathrsfs}
\usepackage{array}
\usepackage{amssymb}
\usepackage[none]{hyphenat}
\usepackage{multirow}
\usepackage[margin=0.75 in]{geometry}
\usepackage{graphicx}
\graphicspath{ {c:/images/}}
\usepackage[document]{ragged2e}
\usepackage[bottom]{footmisc}
\usepackage{titlesec}  
\usepackage{hyperref}
\titleclass{\subsubsubsection}{straight}[\subsection]

\newcounter{subsubsubsection}[subsubsection]
\renewcommand\thesubsubsubsection{\thesubsubsection.\arabic{subsubsubsection}}
\renewcommand\theparagraph{\thesubsubsubsection.\arabic{paragraph}}

\titleformat{\subsubsubsection}
  {\normalfont\normalsize\bfseries}{\thesubsubsubsection}{1em}{}
\titlespacing*{\subsubsubsection}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}

\makeatletter
\renewcommand\paragraph{\@startsection{paragraph}{5}{\z@}%
  {3.25ex \@plus1ex \@minus.2ex}%
  {-1em}%
  {\normalfont\normalsize\bfseries}}
\renewcommand\subparagraph{\@startsection{subparagraph}{6}{\parindent}%
  {3.25ex \@plus1ex \@minus .2ex}%
  {-1em}%
  {\normalfont\normalsize\bfseries}}
\def\toclevel@subsubsubsection{4}
\def\toclevel@paragraph{5}
\def\toclevel@paragraph{6}
\def\l@subsubsubsection{\@dottedtocline{4}{7em}{4em}}
\def\l@paragraph{\@dottedtocline{5}{10em}{5em}}
\def\l@subparagraph{\@dottedtocline{6}{14em}{6em}}
\makeatother

\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\begin{document}

답변1

패키지 는 일부 옵션과 함께 ragged2e로드되므로 footmisc다른 옵션 세트를 사용하여 다시 로드할 수 없습니다.

에 알 수 없는 옵션이 전달되도록 설정되어 있으므로 bottom해당 옵션을 에 전달할 수 있습니다 . 하다ragged2efootmisc

\usepackage[document,bottom]{ragged2e}

을 제거하고 \usepackage[bottom]{footmisc}.

관련 정보