HertieDataScience / SyllabusAndLectures

Hertie School of Governance Introduction to Collaborative Social Science Data Analysis
MIT License
37 stars 60 forks source link

Numbered Headings #63

Open LisaKatharina opened 8 years ago

LisaKatharina commented 8 years ago

Dear all,

I tried to include number_sections: true in the YAML header but it has not numbered my headings in the pdf. Does anybody know why? The rmd file can be found here: https://github.com/ChristopherCosler/CSSR_DataAnalysis/blob/master/Data_Analysis.Rmd.

Thanks for your help!

Best, Lisa

christophergandrud commented 8 years ago

The link you gave isn't working, but I think the problem likely is that you need to include number_sections: true as an argument to pdf_document, e.g.:

---
title: "Test"
output:
  pdf_document:
    number_sections: true
---