简体   繁体   中英

How do I remove a number before a section in latex

`\chapter*{Chapter 2} \section{Literature review} \subsection{Introduction}

results: Chapter 2 2 literature review 2.1 Introduction

I want that 2 before the literature review removed

I am expecting to get something like this:

results: Chapter 2 literature review 2.1 Introduction`

If you add a '*' after 'section' but before '{Literature Review}', like

\chapter*{Chapter 2} \section*{Literature Review} \subsection{Introduction}

It should force LaTeX to skip over the automatic numbering scheme.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM