使用 knitr PACKAGE LATEX "titlesec" 从 rstudio 更改 .pdf 文档的章节(节)样式
Change the style of chapters (sections) of the .pdf document from rstudio with knitr PACKAGE LATEX "titlesec"
我尝试使用 latex titlesec 包为文章文档 (documentclass: article) 的章节(部分)设置样式,但我没有得到任何结果,我的意思是当我配置文档时没有任何变化.
在 rmarkdown
的 YAML header 中
header-includes:
## Style Chapter - package "TITLESEC"
- \usepackage[T1]{fontenc}
- \usepackage{titlesec, blindtext, color}
在 YAML 之外 header
<!-- 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}{\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries}
.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]{\Huge\bfseries}{\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries}
\chapter{RMarkdown}
\chapter{Whosebug}
我尝试使用 latex titlesec 包为文章文档 (documentclass: article) 的章节(部分)设置样式,但我没有得到任何结果,我的意思是当我配置文档时没有任何变化.
在 rmarkdown
的 YAML header 中header-includes:
## Style Chapter - package "TITLESEC"
- \usepackage[T1]{fontenc}
- \usepackage{titlesec, blindtext, color}
在 YAML 之外 header
<!-- 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}{\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries}
.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]{\Huge\bfseries}{\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries}
\chapter{RMarkdown}
\chapter{Whosebug}