이 경고를 어떻게 해결합니까?

이 경고를 어떻게 해결합니까?

왜 이 경고가 표시되나요?

패키지 unnumberedtotoc 경고:
KOMA 스크립트 클래스에서도 제공되는 일부 기능을 추가합니다.
KOMA에는 훨씬 더 많은 기능이 있으므로 전환을 고려하십시오.
다음에서 발견: https://github.com/johannesbottcher/unnumberedtotoc.

\documentclass[11pt]{article}
\usepackage[titletoc]{appendix}
\usepackage[nottoc]{tocbibind}
\usepackage{geometry}
\usepackage{natbib}                 %
\usepackage{bibentry}                   %
\setlength{\bibsep}{0pt plus 0.3ex}     % No Space
\usepackage{etoolbox}                   %
\makeatletter                           %
\patchcmd{\l@section}{1.5em}{2em}{}{}   %
\makeatother                            %
\usepackage{parskip}                    %
\usepackage{titlepic}                   %
\usepackage[english]{babel}             %
\usepackage{amssymb}                    %
\setlength{\parindent}{0in}             %
\usepackage{mathtools}                  %
\usepackage{booktabs}                   %           
\usepackage{setspace}                   %
\usepackage{graphicx}                   %
\usepackage{epstopdf}                   %
\usepackage{amsmath}                    %
\usepackage{amsfonts}                   %
\usepackage{amsthm}                     %
\usepackage{marginnote}                 %
\usepackage{datetime}                   %
\usepackage{enumitem}                   %
\usepackage{subfigure}                  %
\usepackage{rotating}                   %                   
\usepackage{float}                      %
\usepackage[para,symbol*]{footmisc}     %
\usdate                                 %   
% Save original definition of \marginpar                                                                        %
%\let\oldmarginpar\marginpar                                                                                        %
\usepackage{unnumberedtotoc}
\usepackage{multicol}

% Save original definition of \marginpar                                                                        %
\let\oldmarginpar\marginpar                                                                                     %
                                                                                                                %
% Workaround for todonotes problem with natbib (To Do list title comes out wrong)                               %
\makeatletter\let\chapter\@undefined\makeatother % Undefine \chapter for todonotes                              %


% Command to start a new page, starting on odd-numbered page if twoside option                                  %
% is selected above                                                                                             %
%\newcommand{\clearRHS}{\clearpage\thispagestyle{empty}\cleardoublepage\thispagestyle{plain}}                   %


% Number paragraphs and subparagraphs and include them in TOC   
\setcounter{tocdepth}{4}    

\usepackage{indentfirst} % Indent first sentence of a new section
\usepackage{endnotes}    % Use endnotes instead of footnotes
%% ============================================================================                                 
\usepackage{D:/texlive/2016/texmf-dist/tex/latex/jf/jf}                                                                             
%% ============================================================================                                                                                                         
\usepackage[subfigure]{tocloft}



\usepackage{fancyhdr}\makeatletter \def\@fancyvbox#1#2{\vbox{#2}} \makeatother


\begin{document}





\pagenumbering{gobble}% Remove page numbers (and reset to 1)


\setlist{noitemsep}  % Reduce space between list items (itemize, enumerate, etc.)
\onehalfspacing      % Use 1.5 spacing
% Use endnotes instead of footnotes - redefine \footnote command
\renewcommand{\footnote}{\endnote}  % Endnotes instead of footnotes

\author{blabla\thanks{\rm [email protected] }}



%\thispagestyle{empty}
%\fancyfoot{}
%\fancyhead{}
\title{\LARGE \textbf{American}\footnote{Acknowledgements:.}}  %%MAX LIMIT FOR ACKNOWLEDGEMENTS


\date{}              % No date for final submission



% Create title page with no page number
\maketitle
\thispagestyle{fancy}


\smallskip

\centerline{\bf ABSTRACT}



\clearpage
\thispagestyle{plain}


\tableofcontents




\newpage

답변1

패키지가 일부 KOMA 기능을 매우 조잡한 방식으로 구현하기 때문에 이 경고가 표시됩니다. KOMA 스크립트의 기능을 갖고 싶다면 KOMA 클래스로 전환하는 것을 고려해보세요.

잠깐, 그것은 본질적으로 이미 경고에 쓰여진 내용입니다. 내 잘못이야.


그것을 제거하는 방법?

Github 저장소의 Readme에는 패키지에 대한 두 가지 옵션만 나와 있습니다.

silent
로그 파일과 터미널 출력에 인쇄되는 경고를 억제합니다.
indentunnumbered
목차에서 번호가 없는 항목을 들여쓰기합니다.

silent경고를 억제하는 데 사용합니다 .

관련 정보