[Tex/LaTex] Multi line titles with pandoc

pandocpreamble

Given the following pandoc preamble:

---
title: Data Cleaning and Featurization to Support \\  Data Mining in the SomethingSomething Dataset 
subtitle:  SomeCsClass  Final Project with A and B Datasets
documentclass: extarticle
author: Stephen Boesch
geometry: "fontsize=11pt left=1.5cm,right=1.5cm,top=2cm,bottom=2cm"
fontsize: 11pt
output:
  rmarkdown::html_document:
    theme: lumen
    fig_caption: yes        
---

Then what can we replace the \\ with to be recognized/supported by pandoc ?

Best Answer

Alternatively (to retain the title in PDF properties), use the following format:

title: |
       Data Cleaning and Featurization to Support \
       Data Mining in the SomethingSomething Dataset