From bfa0da91cb09e8a128bdf2654b61d4cd986530b3 Mon Sep 17 00:00:00 2001 From: Yilong Zhang Date: Wed, 25 Jan 2023 19:35:29 +0000 Subject: [PATCH] enable vertical alingment --- R/dictionary.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/R/dictionary.R b/R/dictionary.R index cd7a28e..d670c17 100644 --- a/R/dictionary.R +++ b/R/dictionary.R @@ -159,9 +159,9 @@ justification <- function() { #' vertical_justification <- function() { data.frame( - type = c("top", "bottom"), - name = c("top", "bottom"), - rtf_code = c("", "\\clvertalb"), + type = c("top", "middle", "bottom", "merge_first", "merge_rest"), + name = c("top", "middle", "bottom", "merge_first", "merge_rest"), + rtf_code = c("\\clvertalt", "\\clvertalc", "\\clvertalb", "\\clvertalc\\clvmgf", "\\clvertalc\\clvmrg"), stringsAsFactors = FALSE ) }