Skip to content

Commit

Permalink
Merge pull request #259 from ceresek/fix/latex-dependencies-newline
Browse files Browse the repository at this point in the history
Fix missing newline at the end of latex dependencies
  • Loading branch information
hughjonesd authored Jan 28, 2025
2 parents e38077d + 7d4937f commit db5e8f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/latex-dependencies.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ report_latex_dependencies <- function(quiet = FALSE, as_string = FALSE) {
cat(paste0(report, collapse = ""))
cat("% These are LaTeX packages. You can install them using your LaTex management software,\n")
cat("% or by running `huxtable::install_latex_dependencies()` from within R.\n")
cat("% Other packages may be required if you use non-standard tabulars (e.g. tabulary).")
cat("% Other packages may be required if you use non-standard tabulars (e.g. tabulary).\n")
}

if (as_string) {
Expand Down

0 comments on commit db5e8f9

Please sign in to comment.