软件包 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}

相关内容