I am trying to render a pdf file using R markdown. I want to embed an image on the page and using the following syntax:
image: 
While creating the pdf, I get an error saying
`pandoc.exe: Could not find image logo.png, skipping...
pandoc.exe: Error producing PDF from TeX source.
! Package pdftex.def Error: File logo.png not found.`
Error: pandoc document conversion failed with error 43
The image exists, and don't know why it is failing. I even gave the exact path with drive and folder names, but still fails.
My File is simple as:
---
title: 'Test'
author: "Foo"
date: "Wednesday, December 17, 2014"
output: pdf_document
---
```{r}
summary(cars)
```
image: 