我尝试使用latex titlesec包来样式化文章文档(documentclass: article)的章节(节),但我没有得到任何结果,我的意思是当我配置文档时没有变化。
在markdown
的YAML头中header-includes:
## Style Chapter - package "TITLESEC"
- usepackage[T1]{fontenc}
- usepackage{titlesec, blindtext, color}
在YAML头文件之外
<!-- TITLESEC - Estilo CAPÍTULOS -->
definecolor{gray75}{gray}{0.75}
newcommand{hsp}{hspace{20pt}}
titleformat{chapter}[hang]{Hugebfseries}{thechapterhsptextcolor{gray75}{|}hsp}{0pt}{Hugebfseries}
titleformat{section}[hang]{Hugebfseries}{thechapterhsptextcolor{gray75}{|}hsp}{0pt}{Hugebfseries}
.tex文件中章节(节)的代码:
hypertarget{name-section}{%
section{Name Section}label{name-section}}
我为你制作了一个工作模板。
您可以根据自己的意愿进一步调优。
---
title: "test"
header-includes:
- usepackage[T1]{fontenc}
- usepackage{titlesec, blindtext, color}
output:
pdf_document:
toc: true
number_sections: true
documentclass: report
---
definecolor{gray75}{gray}{0.75}
newcommand{hsp}{hspace{20pt}}
titleformat{chapter}[hang]{Hugebfseries}{thechapterhsptextcolor{gray75}{|}hsp}{0pt}{Hugebfseries}
chapter{RMarkdown}
chapter{Stackoverflow}