删除目录中的点和页码

删除目录中的点和页码

为了隐藏我使用的参考书目词

\documentclass[a4paper,12pt{book}
\begin{document}
\tableofcontents
\addcontentsline{toc}{chapter}{Bibliographie}
\renewcommand\bibname{Bibliographie}
\chapter*{Bibliographie}
\renewcommand{\bibname}{}
\begin{thebibliography}{99}
\end{thebibliography}

问题是目录中有点和目录中相应页码。

我怎样才能删除目录中的这些点和相应页码?

谢谢

答案1

您的示例中没有点,但要删除页码:

\documentclass[a4paper,12pt]{book}
\begin{document}
\tableofcontents
\renewcommand\bibname{Bibliographie}
\chapter*{Bibliographie}
\addtocontents{toc}{{\bfseries Bibliographie}}
\renewcommand{\bibname}{}
\begin{thebibliography}{99}
\end{thebibliography}
\end{document}

相关内容