当前位置: 首页 > news >正文

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

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.zskr.cn/news/8517.html

相关文章:

  • 【IEEE出版、格林威治大学主办】第六届信息科学与并行、分布式处理国际学术会议(ISPDS 2025)
  • 【2025-09-18】工作情绪
  • Ubuntu 系统部署 LNMP 环境详细教程(附shell脚本一键部署↓) - 指南
  • 详细介绍:7HTMLCSS高级
  • C++学习笔记之输入输出流 - 教程
  • 使用Inno Setup打包安装程序exe流程
  • XXL-JOB-源码分享(1)
  • WPF 字符竖向排列的排版格式(直排)表明控件
  • 深入解析:HSA35NV001美光固态闪存NQ482NQ470
  • YOLO实战应用 1YOLOv5 架构与模块
  • SpringBoot整合RustFS:全方位优化文件上传性能
  • windows使用es-client插件
  • AI学习日记 - 实践
  • es中的索引
  • VIVADO的IP核 DDS快速采用——生成正弦波,线性调频波
  • 深入解析:C语言---判断语句
  • YOLO进阶提升 4训练准备与数据处理
  • YOLO进阶提升 5标注与配置
  • 【学术会议前沿信息|科研必备】IEEE/EI/Scopus三检护航!人工智能+自动化控制+人文社科+遥感+地理信息+视觉领域国际会议征稿启动,硕博生速来! - 教程
  • YOLO进阶提升 3YOLOv4 改进
  • 深入解析:数据库入门实战版
  • C# Avalonia 15- Animation- AnimationPlayerTest
  • JSONArray集合根据某个字段查询对象
  • 完整教程:Qt开发经验 --- qmake执行系统命令(15)
  • 13. LangChain4j + 加入检索增加生成 RAG(知识库) - Rainbow
  • CentOS 7 源码版 PhpMyAdmin 安装指南(适配 Nginx+PHP-FPM 环境) - 教程
  • AI智能体服务优秀的平台架构设计
  • 深入解析:YARN架构解析:深入理解Hadoop资源管理核心
  • JBoltAI:破解Java企业级AI应用落地难题的利器
  • Day04 C:\Users\Lenovo\Desktop\note\code\JavaSE\Basic\src\com\David\operator Demo01-08+Doc