diff --git a/R/utils_tex.R b/R/utils_tex.R index e68805c7..ef1d6a0f 100644 --- a/R/utils_tex.R +++ b/R/utils_tex.R @@ -111,6 +111,12 @@ create_inheader_tex <- function(species = NULL, year = NULL, subdir) { # sep = "" # ) # lines <- append(lines, gloss) + + # Add float package + lines <- append( + lines, + "\\usepackage{float}\n\\floatplacement{table}{H}\n" + ) write(lines, file = paste(subdir, "/in-header.tex", sep = "")) }