Conflict between Chunk title and Kbl () caption

Hi community!!!

I am doing a Rmarkdown document and trying to get only the kable() caption title and not the Chunks title in the output document .

My problem is that when I knit the document I get both of titles in the same place.

Is any possibility to delete in the Chunk's options the title of the Chunk in the output document without delete it?

thanks for all!!!

You chunk label name should be like an id of the chunk. It should not be a long sentence with spaces.

We advice the following:

alphanumeric characters (a-z, A-Z, 0-9), slashes (/), or dashes (-).

Can you try by changing the label in

```{r label, echo = FALSE}
content of chunk 
```
1 Like

Thanks it solve the problem!!!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.