使用 knitr 包 LATEX“titlesec”从 rstudio 更改 .pdf 文档章节(部分)的样式

使用 knitr 包 LATEX“titlesec”从 rstudio 更改 .pdf 文档章节(部分)的样式

我尝试使用 latex titlesec 包来设置文章文档 (documentclass: article) 的章节 (部分) 的样式,但没有得到任何结果,我的意思是当我配置文档时没有任何变化。

在 rmarkdown 的 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]{\Huge\bfseries}{\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries}
\titleformat{\section}[hang]{\Huge\bfseries}{\thesection\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries}

在.tex文件中章节(部分)的代码:


\hypertarget{name-section}{%
\section{Name Section}\label{name-section}}


答案1

正如您所指出的,文章文档类中没有章节,只有节。因此,您尝试重新定义不存在的命令是很有趣的。另一方面,我不清楚您要用 做什么\titleformat,但我猜您正在搜索类似这样的命令:

姆韦

---
docummentclass: article
output:
  pdf_document: 
    number_sections: yes
header-includes:
- \usepackage{titlesec, xcolor, lipsum}
# \titleformat{command}[shape]{format}{label}{sep}{before-code}[after-code]
- \titleformat{\section}{\Huge\bfseries}{\thesection\hspace{20pt}\textcolor{gray!75}{|}}{20pt}{}
---

# Introduction
\lipsum[1][1-5]

# Objectives
\lipsum[1][6-9]

相关内容