add all_cols to add_indent
diff --git a/docs/awesome_table_in_pdf.Rmd b/docs/awesome_table_in_pdf.Rmd
index 41ccc1a..7806224 100644
--- a/docs/awesome_table_in_pdf.Rmd
+++ b/docs/awesome_table_in_pdf.Rmd
@@ -363,12 +363,19 @@
## Row indentation
Unlike `pack_rows()`, which will insert a labeling row, sometimes we want to list a few sub groups under a total one. In that case, `add_indent()` is probably more appropriate.
-For advanced users, you can even define your own css for the group labeling.
+
```{r}
kable(dt, "latex", booktabs = T) %>%
add_indent(c(1, 3, 5))
```
+You can also specify the width of the indentation by the `level_of_indent` option. At the same time, if you want to indent every column, you can choose to turn on `all_cols`. Note that if a column is right aligned, you probably won't be able to see the effect.
+
+```{r}
+kable(dt, "latex", booktabs = T, align = "l") %>%
+ add_indent(c(1, 3, 5), level_of_indent = 2, all_cols = T)
+```
+
## Group rows via multi-row cell
Function `pack_rows` is great for showing simple structural information on rows but sometimes people may need to show structural information with multiple layers. When it happens, you may consider using `collapse_rows` instead, which will put repeating cells in columns into multi-row cells.