What is the R marking equivalent to LaTeX \texttt ?
With this MWE:
--- 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'))
I get this pdf:

Although I would like to get the result from this .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}

source share