文章类别中未编号的部分

文章类别中未编号的部分

我正在尝试在论文中加入“致谢”部分,我希望它位于摘要之前,并且不编号。它不需要出现在目录中。我正在使用课程article并阅读

\section*{}

应该可以解决问题。遗憾的是,它不起作用。该部分仍然有编号,并出现在目录中...

\documentclass[a4paper, 12pt, final]{article}

\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{sectsty}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{caption}
\usepackage{abstract}
\usepackage{subfig}
\usepackage{url}
\usepackage[final]{pdfpages}
\usepackage{todonotes}
\usepackage{amsmath}
\usepackage{float}

\geometry{a4paper,left=25mm,right=20mm,top=32mm,bottom=26mm}
\pagestyle{fancy}
\lhead{\changefont{12pt}{ptm}{m}{sl}\leftmark}
\rhead{\changefont{12pt}{ptm}{m}{sl}\thepage}
\cfoot{}
\linespread{1.08}
\captionsetup{labelsep=none, figurename= , tablename= }
\allsectionsfont{\fontfamily{phv}\selectfont}
\subsubsectionfont{\fontfamily{phv}\fontsize{14pt}{14pt}\selectfont}
\renewcommand{\thefigure}{\thesection.\arabic{figure}}
\newcommand{\changefont}[4]{\fontsize{#1}{#1}\fontfamily{#2} \fontseries{#3} \fontshape{#4} \selectfont}
\newcommand{\standard}{\changefont{12pt}{ptm}{m}{n}}
\newcommand{\fussnote}[1]{\footnote{\it #1}}
\newcommand{\abbildung}{\changefont{10pt}{ptm}{m}{it}}
\let\origitemize\itemize
\def\itemize{\origitemize\itemsep0pt}
\renewcommand{\abstractnamefont}{\normalfont\huge\bfseries}
\graphicspath{{./images/}}
\renewcommand{\figurename}{Fig.} 
\renewcommand{\tablename}{Table:} 
\parindent=0pt 
\widowpenalty=1000
\clubpenalty=1000
\renewcommand{\baselinestretch}{1.6 } 

%Start of the actual document
\begin{document}

\author{Me}
\title{My Verry Interesting Project}
\date{\today}
\addtocounter{page}{-1}

\maketitle

\thispagestyle{empty}

\newpage

\pagenumbering{roman}
\input{Letter}
\newpage
\input{Acknowledgments}
\newpage
\input{Abstract}
\newpage
\tableofcontents
\newpage
\listoffigures
\listoftables
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\input{Introduction}
\end{document}

Acknowledgments.tex文件中我使用的只是

\Section*{Acknowledgments}

相关内容