如何更改索引标题位置,而不更改其他章节标题位置?

如何更改索引标题位置,而不更改其他章节标题位置?

在此处输入图片描述

我使用 更改了章节标题位置titlesec。但是,索引标题也会更改。如何在不更改索引位置的情况下使用 titlesec?我目前使用以下代码:

\documentclass[a4paper,11pt,twoside, openleft]{book}

\usepackage{imakeidx}
\newcommand{\boldindex}[1]{\textcolor{DarkPurple}{\textbf{#1}}\nouppercase{\index{#1}}}
\makeindex[intoc]

\titleformat{\chapter}[display]{}{}{-2pt}{\hskip5cm \centering \Huge \bfseries \mbox}
\titlespacing{\chapter}{186pt}{-120pt}{27pt}

\renewcommand\indexname{Begrippen Index}

\begin{document}
\chapter{Chapter}
\boldindex{Test}\\
\boldindex{tEst}\\
\boldindex{teSt}\\
\boldindex{tesT}

\printindex 
\end{document}

相关内容