I have a print statement in R
as a macro in Markdown
```{r chunk_name, echo=FALSE}
if ( any(so.results$Duration <0.0))
{print("there are non-positive durations")
} else
{print("all durations are fine!")}
```
and I want to generate a PDF, not an XML! How can I print "all durations are fine!"
in colour for example green or red?