5
LaTeX \texttt
に相当するRマークダウンとは何ですか?RマークダウンはLaTeX textttに相当しますか?
:私は、このPDFファイルを取得する
---
title: "A test"
author: "Alessandro"
date: "February 19, 2016"
output: pdf_document
---
```{r, echo=FALSE}
d<-data.frame(product_name=c('d','a','b','c')) # what to write here to get a typewriter font?
```
Product names are: `r sort(d$product_name)`.
:
私はこの.tex
file
\documentclass[a4paper]{article}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\title{A test}
\author{Alessandro}
\begin{document}
\maketitle
Product names are: \texttt{a, b, c, d}.
\end{document}
からの出力を取得したいと思いますが