I think the duplicate answer does not make it very clear but basically, you cannot achieve what you want natively.
If you are able, you need to add some changes to your CSS (or Markdown processor somewhere) to include the roman numerals at the output for you.
From the docs:
To include one or multiple custom stylesheets in an Rmd document, you
can use the css option, e.g.,
output:
html_document:
css: "style.css"
Alternatively, you can use a css code chunk to embed the CSS rules
directly in your Rmd document
```{css, echo=FALSE}
.footnotes-list {
list-style-type: lower-roman;
}
```
So, let's say this is your markdown:
Here's a simple footnote,[^i] and here's a another one.[^ii]
asdfasdf
asfdasdf
[^i]: This is the first footnote.
[^ii]: Here's the second one.
You need to create a new file called 'styles.css'
and add the following code to it:
.footnotes-list {
list-style-type: lower-roman;
}
This would result in some HTML rendering like this (see demo below)
/* need to add this to your CSS */
.footnotes-list {
list-style-type: lower-roman;
}
<p>
Here’s a simple footnote,<sup class="footnote-ref">
<a href="#fn1" id="fnref1">i</a></sup> and here’s a another one.
<sup class="footnote-ref"><a href="#fn2" id="fnref2">ii</a></sup>
</p>
<div class="cl-preview-section">
<p>asdfasdf<br> asfdasdf
</p>
<hr class="footnotes-sep">
<section class="footnotes">
<ol class="footnotes-list">
<li id="fn1" class="footnote-item">
<p>This is the first footnote. <a href="#fnref1" class="footnote-backref">↩︎</a></p>
</li>
<li id="fn2" class="footnote-item">
<p>Here’s the second one. <a href="#fnref2" class="footnote-backref">↩︎</a></p>
</li>
</ol>
</section>
</div>