Настройка пользовательской нумерации глав в Markdown - PullRequest
0 голосов
/ 26 августа 2018

Я создаю документ R Markdown, который выводит документ PDF.Мой заголовок YAML выглядит следующим образом:

---
title: "Introduction"
author: "John Doe
date: "August 26, 2018"
mainfont: Pancetta Pro
documentclass: book
output:
  pdf_document:
    number_sections: true
    df_print: kable
    fig_caption: yes
    fig_width: 6
    highlight: tango
    includes:
      in_header: preamble.tex
    latex_engine: xelatex
geometry: headheight=25pt, tmargin=25mm, bmargin=20mm, innermargin=20mm, outermargin=20mm
---

В файле preamble.tex я хочу иметь следующие команды LaTeX (которые просто изменяют способ отображения заголовков):

\renewcommand{\chaptermark}[1]{\markright{#1}}
\renewcommand{\sectionmark}[1]{}
\renewcommand{\subsectionmark}[1]{}    
\usepackage{titlesec}
\titleformat{\chapter}[hang]{\Huge}{\bfseries\thechapter}{0.2pt}{\thicklines\thehook}[\vspace{0.5em}]

Однако, когда эти последние строки включены в preamble.tex, я получаю сообщение об ошибке при вязании файла R Markdown:

! Argument of \paragraph has an extra }.
<inserted text> 
\par 
l.1290 \ttl@extract\paragraph
Error: Failed to compile Template.tex

Я не могу понять, почему он не запускается.Содержимое файла preamble.tex следующее:

% !TeX program = lualatex
\usepackage{relsize} % To make math slightly larger.

\newcommand{\thehook}{%
 \hspace{.5em}%
 \setlength{\unitlength}{1em}%
 \raisebox{-.5em}{\begin{picture}(.4,1.7)
  \put(0,0){\line(1,0){.2}}
  \put(.2,0){\line(0,1){1.7}}
  \put(.2,1.7){\line(1,0){.2}}
 \end{picture}}%
 \hspace{0.5em}%
} %This creates the "hook" symbol at the beginning of each chapter.

\usepackage{anyfontsize}
\usepackage{fontspec}
\setmainfont{Pancetta Pro}

%   We set the font for the chapters:
\newfontfamily\chapterfont{Pancetta Pro}

%   And now for the sections:
\newfontfamily\sectionfont{Pancetta Pro}


\usepackage{fancyhdr}
\fancyhead{}
\fancyfoot{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancyhead[RO]{\large\sffamily\rightmark\thehook\textbf{\thepage}}
\fancyhead[LE]{\large\sffamily\textbf{\thepage}\thehook\rightmark}

\fancypagestyle{plain}{%
 \fancyhf{}
}

\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markright{#1}}
\renewcommand{\sectionmark}[1]{}
\renewcommand{\subsectionmark}[1]{}

\fontsize{12}{20}\selectfont

\usepackage{titlesec}
\titleformat{\chapter}[hang]{\Huge}{\bfseries\thechapter}{0.2pt}{\thicklines\thehook}[\vspace{0.5em}]

При исключении последних 6 строк в предыдущем коде ошибки не возникает, и создается файл PDF.

1 Ответ

0 голосов
/ 27 августа 2018

Если вы хотите использовать titlesec вместе с rmarkdown, вам нужно добавить

subparagraph: yes

к заголовкам YAML, cf несколько прочее ответов .


Класс LaTeX по умолчанию, используемый rmarkdown, - article, который не имеет глав.Вы должны добавить

documentclass: report

или

documentclass: book

в заголовок YAML.

...