Typora标题自动显示序号,大纲中也显示序号

news/2025/9/20 14:12:16/文章来源:https://www.cnblogs.com/lucky-jun/p/19102408

Typora标题自动显示序号,大纲中也显示序号

代码一:一级标题显示序号

点击查看代码
/*************************************** Header Counters in TOC (目录中的标题计数器)**************************************/
.md-toc-inner {text-decoration: none;
}/* 在TOC根目录初始化所有计数器 */
.md-toc-content {counter-reset: h1toc h2toc h3toc h4toc h5toc h6toc;
}.md-toc-h1 {margin-left: 0;font-size: 1.5rem;counter-reset: h2toc h3toc h4toc h5toc h6toc; /* 重置所有下级计数器 */
}.md-toc-h2 {font-size: 1.1rem;margin-left: 1.5rem;counter-reset: h3toc h4toc h5toc h6toc;
}.md-toc-h3 {margin-left: 3rem;font-size: .9rem;counter-reset: h4toc h5toc h6toc;
}.md-toc-h4 {margin-left: 4.5rem;font-size: .85rem;counter-reset: h5toc h6toc;
}.md-toc-h5 {margin-left: 6rem;font-size: .8rem;counter-reset: h6toc;
}.md-toc-h6 {margin-left: 7.5rem;font-size: .75rem;
}/* 一级标题前显示序号 */
.md-toc-h1:before {color: black;counter-increment: h1toc;content: counter(h1toc) ". ";
}.md-toc-h1 .md-toc-inner {margin-left: 0;
}/* 二级标题编号: 使用 h1toc 和 h2toc */
.md-toc-h2:before {color: black;counter-increment: h2toc;content: counter(h1toc) "." counter(h2toc) ". ";
}/* 三级标题编号: 使用 h1toc, h2toc 和 h3toc */
.md-toc-h3:before {color: black;counter-increment: h3toc;content: counter(h1toc) "." counter(h2toc) "." counter(h3toc) ". ";
}/* 四级标题编号: 使用 h1toc, h2toc, h3toc, h4toc */
.md-toc-h4:before {color: black;counter-increment: h4toc;content: counter(h1toc) "." counter(h2toc) "." counter(h3toc) "." counter(h4toc) ". ";
}/* 五级标题编号: 使用 h1toc, h2toc, h3toc, h4toc, h5toc */
.md-toc-h5:before {color: black;counter-increment: h5toc;content: counter(h1toc) "." counter(h2toc) "." counter(h3toc) "." counter(h4toc) "." counter(h5toc) ". ";
}/* 六级标题编号: 使用 h1toc, h2toc, h3toc, h4toc, h5toc, h6toc */
.md-toc-h6:before {color: black;counter-increment: h6toc;content: counter(h1toc) "." counter(h2toc) "." counter(h3toc) "." counter(h4toc) "." counter(h5toc) "." counter(h6toc) ". ";
}/*************************************** Header Counters in Content (正文中的标题计数器)**************************************//* 在#write根元素初始化所有计数器,确保即使没有上级标题,计数器也存在 */
#write {counter-reset: h1 h2 h3 h4 h5 h6;
}/* 每个标题元素重置所有下级计数器 */
h1 {counter-reset: h2 h3 h4 h5 h6;
}h2 {counter-reset: h3 h4 h5 h6;
}h3 {counter-reset: h4 h5 h6;
}h4 {counter-reset: h5 h6;
}h5 {counter-reset: h6;
}/* 一级标题前显示序号 */
#write h1:before {counter-increment: h1;content: counter(h1) ". ";
}/* 二级标题编号: 使用 h1 和 h2 */
#write h2:before {counter-increment: h2;content: counter(h1) "." counter(h2) ". ";
}/* 三级标题编号: 使用 h1, h2 和 h3 */
#write h3:before,
h3.md-focus.md-heading:before {counter-increment: h3;content: counter(h1) "." counter(h2) "." counter(h3) ". ";
}/* 四级标题编号: 使用 h1, h2, h3, h4 */
#write h4:before,
h4.md-focus.md-heading:before {counter-increment: h4;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) ". ";
}/* 五级标题编号: 使用 h1, h2, h3, h4, h5 */
#write h5:before,
h5.md-focus.md-heading:before {counter-increment: h5;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". ";
}/* 六级标题编号: 使用 h1, h2, h3, h4, h5, h6 */
#write h6:before,
h6.md-focus.md-heading:before {counter-increment: h6;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". ";
}/*************************************** 智能缩进系统* 使用 CSS 变量方便统一调整**************************************/
:root {--h1-indent: 0;--h2-indent: 1.5rem;--h3-indent: 3rem;--h4-indent: 4.5rem;--h5-indent: 6rem;--h6-indent: 7.5rem;
}/* 基础缩进设置 */
#write h1 {margin-left: var(--h1-indent);padding-left: 0;
}#write h2 {margin-left: var(--h2-indent);padding-left: 0;
}#write h3 {margin-left: var(--h3-indent);padding-left: 0;
}#write h4 {margin-left: var(--h4-indent);padding-left: 0;
}#write h5 {margin-left: var(--h5-indent);padding-left: 0;
}#write h6 {margin-left: var(--h6-indent);padding-left: 0;
}/*************************************** 侧边栏大纲编号**************************************/
.sidebar-content {counter-reset: h1 h2 h3 h4 h5 h6;
}.outline-h1 {counter-reset: h2 h3 h4 h5 h6;
}.outline-h2 {counter-reset: h3 h4 h5 h6;
}.outline-h3 {counter-reset: h4 h5 h6;
}.outline-h4 {counter-reset: h5 h6;
}.outline-h5 {counter-reset: h6;
}/* 一级标题显示序号 */
.outline-h1>.outline-item>.outline-label:before {counter-increment: h1;content: counter(h1) ". ";
}.outline-h2>.outline-item>.outline-label:before {counter-increment: h2;content: counter(h1) "." counter(h2) ". ";
}.outline-h3>.outline-item>.outline-label:before {counter-increment: h3;content: counter(h1) "." counter(h2) "." counter(h3) ". ";
}.outline-h4>.outline-item>.outline-label:before {counter-increment: h4;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) ". ";
}.outline-h5>.outline-item>.outline-label:before {counter-increment: h5;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". ";
}.outline-h6>.outline-item>.outline-label:before {counter-increment: h6;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". ";
}/*************************************** 覆盖焦点标题的默认样式**************************************/
#write>h1.md-focus:before,
#write>h2.md-focus:before,
#write>h3.md-focus:before,
#write>h4.md-focus:before,
#write>h5.md-focus:before,
#write>h6.md-focus:before,
h1.md-focus:before,
h2.md-focus:before,
h3.md-focus:before,
h4.md-focus:before,
h5.md-focus:before,
h6.md-focus:before {color: inherit;border: inherit;border-radius: inherit;position: inherit;left: initial;float: none;top: initial;font-size: inherit;padding-left: inherit;padding-right: inherit;vertical-align: inherit;font-weight: inherit;line-height: inherit;
}

代码二:一级标题不显示序号

点击查看代码
/*************************************** Header Counters in TOC (目录中的标题计数器)**************************************/
.md-toc-inner {text-decoration: none;
}/* 在TOC根目录初始化所有计数器 */
.md-toc-content {counter-reset: h1toc h2toc h3toc h4toc h5toc h6toc;
}.md-toc-h1 {margin-left: 0;font-size: 1.5rem;counter-reset: h2toc h3toc h4toc h5toc h6toc; /* 重置所有下级计数器 */
}.md-toc-h2 {font-size: 1.1rem;margin-left: 1.5rem;counter-reset: h3toc h4toc h5toc h6toc;
}.md-toc-h3 {margin-left: 3rem;font-size: .9rem;counter-reset: h4toc h5toc h6toc;
}.md-toc-h4 {margin-left: 4.5rem;font-size: .85rem;counter-reset: h5toc h6toc;
}.md-toc-h5 {margin-left: 6rem;font-size: .8rem;counter-reset: h6toc;
}.md-toc-h6 {margin-left: 7.5rem;font-size: .75rem;
}/* 一级标题前不显示序号 */
.md-toc-h1:before {display: none;
}/* 二级标题编号: 只使用自身的 h2toc 计数器 */
.md-toc-h2:before {color: black;counter-increment: h2toc;content: counter(h2toc) ". ";
}/* 三级标题编号: 使用 h2toc 和 h3toc */
.md-toc-h3:before {color: black;counter-increment: h3toc;content: counter(h2toc) "." counter(h3toc) ". ";
}/* 四级标题编号: 使用 h2toc, h3toc, h4toc */
.md-toc-h4:before {color: black;counter-increment: h4toc;content: counter(h2toc) "." counter(h3toc) "." counter(h4toc) ". ";
}/* 五级标题编号: 使用 h2toc, h3toc, h4toc, h5toc */
.md-toc-h5:before {color: black;counter-increment: h5toc;content: counter(h2toc) "." counter(h3toc) "." counter(h4toc) "." counter(h5toc) ". ";
}/* 六级标题编号: 使用 h2toc, h3toc, h4toc, h5toc, h6toc */
.md-toc-h6:before {color: black;counter-increment: h6toc;content: counter(h2toc) "." counter(h3toc) "." counter(h4toc) "." counter(h5toc) "." counter(h6toc) ". ";
}/*************************************** Header Counters in Content (正文中的标题计数器)**************************************//* 在#write根元素初始化所有计数器,确保即使没有上级标题,计数器也存在 */
#write {counter-reset: h1 h2 h3 h4 h5 h6;
}/* 每个标题元素重置所有下级计数器 */
h1 {counter-reset: h2 h3 h4 h5 h6;
}h2 {counter-reset: h3 h4 h5 h6;
}h3 {counter-reset: h4 h5 h6;
}h4 {counter-reset: h5 h6;
}h5 {counter-reset: h6;
}/* 一级标题前不显示序号 */
#write h1:before {display: none;
}/* 二级标题编号: 只使用自身的 h2 计数器 */
#write h2:before {counter-increment: h2;content: counter(h2) ". ";
}/* 三级标题编号: 使用 h2 和 h3 */
#write h3:before,
h3.md-focus.md-heading:before {counter-increment: h3;content: counter(h2) "." counter(h3) ". ";
}/* 四级标题编号: 使用 h2, h3, h4 */
#write h4:before,
h4.md-focus.md-heading:before {counter-increment: h4;content: counter(h2) "." counter(h3) "." counter(h4) ". ";
}/* 五级标题编号: 使用 h2, h3, h4, h5 */
#write h5:before,
h5.md-focus.md-heading:before {counter-increment: h5;content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". ";
}/* 六级标题编号: 使用 h2, h3, h4, h5, h6 */
#write h6:before,
h6.md-focus.md-heading:before {counter-increment: h6;content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". ";
}/*************************************** 智能缩进系统 (可选,根据你的需求调整)* 使用 CSS 变量方便统一调整**************************************/
:root {--h1-indent: 0;--h2-indent: 1.5rem;--h3-indent: 3rem;--h4-indent: 4.5rem;--h5-indent: 6rem;--h6-indent: 7.5rem;
}/* 基础缩进设置 */
#write h1 {margin-left: var(--h1-indent);padding-left: 0;
}#write h2 {margin-left: var(--h2-indent);padding-left: 0;
}#write h3 {margin-left: var(--h3-indent);padding-left: 0;
}#write h4 {margin-left: var(--h4-indent);padding-left: 0;
}#write h5 {margin-left: var(--h5-indent);padding-left: 0;
}#write h6 {margin-left: var(--h6-indent);padding-left: 0;
}/*************************************** 侧边栏大纲编号 (可选)**************************************/
.sidebar-content {counter-reset: h1 h2 h3 h4 h5 h6;
}.outline-h1 {counter-reset: h2 h3 h4 h5 h6;
}.outline-h2 {counter-reset: h3 h4 h5 h6;
}.outline-h3 {counter-reset: h4 h5 h6;
}.outline-h4 {counter-reset: h5 h6;
}.outline-h5 {counter-reset: h6;
}.outline-h1>.outline-item>.outline-label:before {display: none;
}.outline-h2>.outline-item>.outline-label:before {counter-increment: h2;content: counter(h2) ". ";
}.outline-h3>.outline-item>.outline-label:before {counter-increment: h3;content: counter(h2) "." counter(h3) ". ";
}.outline-h4>.outline-item>.outline-label:before {counter-increment: h4;content: counter(h2) "." counter(h3) "." counter(h4) ". ";
}.outline-h5>.outline-item>.outline-label:before {counter-increment: h5;content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". ";
}.outline-h6>.outline-item>.outline-label:before {counter-increment: h6;content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". ";
}/*************************************** 覆盖焦点标题的默认样式**************************************/
#write>h3.md-focus:before,
#write>h4.md-focus:before,
#write>h5.md-focus:before,
#write>h6.md-focus:before,
h3.md-focus:before,
h4.md-focus:before,
h5.md-focus:before,
h6.md-focus:before {color: inherit;border: inherit;border-radius: inherit;position: inherit;left: initial;float: none;top: initial;font-size: inherit;padding-left: inherit;padding-right: inherit;vertical-align: inherit;font-weight: inherit;line-height: inherit;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/908363.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【IEEE出版、格林威治大学主办】第六届信息科学与并行、分布式处理国际学术会议(ISPDS 2025)

第六届信息科学与并行、分布式处理国际学术会议(ISPDS 2025) 2025 6th International Conference on Information Science, Parallel and Distributed Systems 在这里看会议官网详情 2025年10月31日-11月2日 | 英国-…

​​Snipaste 2.10.1.dmg截图安装教程|Mac电脑拖拽安装详细步骤​

​​Snipaste 2.10.1.dmg截图安装教程|Mac电脑拖拽安装详细步骤​​​Snipaste​​ 是一款超好用的 ​​截图 + 贴图工具​​,特别适合 Mac 用户日常使用。 第一步:下载文件 (这一步你可能已经完成了) 安装包下载…

Day18面向对象的基本认识与回顾方法的定义

package oop;import java.io.IOException;//类:Demo1 public class Demo1 {//main:方法public static void main(String[] args) {}/*修饰符 返回值类型 方法名(.....){方法体return 返回值}*///return 结束方法…

【2025-09-19】连岳摘抄

23:59大家知道,时间有时像鸟儿一样疾飞,有时像蠕虫一样爬行,不过,当一个人觉察不到时间的快慢时,他往往会感到特别幸福。——屠格涅夫本科学历有没有用呢?或者说,教育有没有用呢?一、当然是有用的。因为我们这…

【2025-09-18】工作情绪

20:00人间是值得赞美的,生活应加以珍惜。——启功昨晚临下班前,又下了一场大雨。然而我还是没有开车上班。最后我还是投不了球,也做不了其它运动,就这样坐在办公室等何太下班来接我。一等,又是两个小时。加上白天…

Ubuntu 系统部署 LNMP 环境详细教程(附shell脚本一键部署↓) - 指南

Ubuntu 系统部署 LNMP 环境详细教程(附shell脚本一键部署↓) - 指南pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: &q…

详细介绍:7HTMLCSS高级

详细介绍:7HTMLCSS高级pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: "Consolas", "Monaco", &qu…

详细介绍:【Svelte】后端、前端加载数据的比较与分析

pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: "Consolas", "Monaco", "Courier New", …

微信人才招聘系统信息管理系统源码-SpringBoot后端+微信小脚本前端+MySQL【可直接运行】

微信人才招聘系统信息管理系统源码-SpringBoot后端+微信小脚本前端+MySQL【可直接运行】2025-09-20 13:37 tlnshuju 阅读(0) 评论(0) 收藏 举报pre { white-space: pre !important; word-wrap: normal !important;…

MAUI和Android、IOS的互操作之IOS篇

上一篇演示了Maui如何与Android互操作,这篇是关于Maui与ios的互操作上一篇演示了Maui如何与Android互操作,这篇是关于Maui与ios的互操作。1.首先下载官方demo,下载完代码以后用Xcode打开Native项目,路径位于templa…

OBS Studio视频直播录制软件下载安装教程(录屏直播软件下载)

目录OBS Studio视频直播录制软件介绍OBS Studio视频直播录制软件安装教程一、OBS StudioWin 版安装教程(支持 Win10/Win11 及更高版本,32/64 位系统通用,含 Win11 22H2/23H2 版本)二、OBS StudioMac 版安装教程(支…

实用指南:[论文阅读] 人工智能 | 通用AI落地新路径:大语言模型智能体操作系统研究综述精读

pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: "Consolas", "Monaco", "Courier New", …

C++学习笔记之输入输出流 - 教程

C++学习笔记之输入输出流 - 教程2025-09-20 13:24 tlnshuju 阅读(0) 评论(0) 收藏 举报pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !import…

【Java】Hashtable讲解

Java中的Hashtable是线程安全的哈希表实现,继承自Dictionary类并实现了Map接口。基础操作 创建实例

使用Inno Setup打包安装程序exe流程

使用Inno Setup制作WPF开发的桌面应用程序流程 1.项目框架布局项目目录:D:\Project\XenD101H\Tools,这个目录我将下载innosetup-6.2.2.exe 安装的程序放置这里,以及有几个脚本执行文件,最后输出RadarSensorConfigT…

【JAVA】TreeSet讲解

什么是TreeSet?TreeSet是JAVA中集合的一种,它通过红黑树(Red-Black Tree)数据结构实现了有序的,唯一元素存储结构。一、TreeSet的定义 TreeSet是Java集合框架中的一种有序集合,它实现了Set接口,因此具有不允许重…

攻防世界 web

入门必看的ctf网站攻防世界 baby_web 解题 说到初始界面肯定是会想到index.php但是实际进入题目以后发现是1.php,在通过dirsearch扫描网页目录无果后尝试直接在url输入index.php,结果发现还是会自动跳转到1.php方法一…

批判 vs 审判

批判 vs 审判判断力是一个人最重要的能力

XXL-JOB-源码分享(1)

XXL-JOB-源码分享(1) 自研调度组件并支持集群部署,可保证调度中心HA;com.xxl.job.core.executor.XxlJobExecutor#initEmbedServer 初始化内部调度服务查看代码 private void initEmbedServer(String address, Stri…