Конфликт опций для пакета 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параметр в ragged2e, поскольку он настроен так, что неизвестные параметры передаются в footmisc. Делать

\usepackage[document,bottom]{ragged2e}

и удалить \usepackage[bottom]{footmisc}.

Связанный контент