You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can use multiple calls to tab_source_note to insert multiple notes at the bottom of a table. These notes appear correctly in HTML, but only the first note appears in LaTeX output.
The problem is related to Line 326 of the utils_render_latex.R file, which only selects the first element of the list of notes. In my gt fork, I removed that line and it fixed the problem:
We can use multiple calls to
tab_source_note
to insert multiple notes at the bottom of a table. These notes appear correctly in HTML, but only the first note appears in LaTeX output.Example:
Created on 2020-05-22 by the reprex package (v0.3.0)
The result is correct in HTML:
The problem is related to Line 326 of the
utils_render_latex.R
file, which only selects the first element of the list of notes. In mygt
fork, I removed that line and it fixed the problem:https://github.com/rstudio/gt/blob/master/R/utils_render_latex.R#L326
The text was updated successfully, but these errors were encountered: