When I create a figure caption with the below method, the whole figure caption is included in the figure list, which is annoying as some figures have a lot in the caption. The figure list is created automatically by bookdown. Is there a way of separating this into something like "figure title" and "figure text", where only the figure title is included in the list?
```{r, fig.cap="\\label{fig:figureOne}Figure caption goes here. This caption is sort of long, but is informative for the figure", echo=FALSE, message=FALSE, fig.align='center'}
knitr::include_graphics("images/figure1.png")
```
This looks like this in the knitted pdf:
Figure 1.1: Figure caption goes here. This caption is sort of long, but is informative for the figure
List of figures then looks like this:
1.1 Figure caption goes here. This caption is sort of long, but is informative for the figure
Is it possible to make it look like this instead:
1.1 Figure caption goes here.
I couldn't find any documentation on subcaptions or figure text other than figure captions.