Keldos-Li / typora-latex-theme

将Typora伪装成LaTeX的中文样式主题,本科生轻量级课程论文撰写的好帮手。This is a theme disguising Typora into Chinese LaTeX style.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

去掉二级标题的序号

HaHaRen6 opened this issue · comments

如何去掉二级标题(h2)的序号,但保持h3,h4等序号不变

#write h2:before {
  counter-increment: h2;
  content: counter(h2);
  margin-right: 1.2em;
}

我尝试将这里第三行注释掉,但是h3就从0.1开始了

commented
#write h2:before {
  counter-increment: h2;
  content: counter(h2);
  /* margin-right: 1.2em; */
  visibility: hidden;
  position: absolute;
}

解决了,谢谢:)