r语言 - 使用针织从 rstudio 更改.pdf文档的章节(部分)的样式 包装乳胶 "titlesec"



我尝试使用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}

相关内容

  • 没有找到相关文章

最新更新