Hi, I have 2 images and I want to render them side by side in both LaTeX (pdf) and gitbook (html) format.
This works fine on pdf, but not on html:
```{r side-by-side, fig.show='hold', out.width='45%',}
include_graphics("path_to_image1")
include_graphics("path_to_image2")
In the html output, there is no white space, margin, padding between images. I want some gap between images. I feel like there must be an option but I couldn't find it. Is there a way to set this without editing CSS?