Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2026-04-29 Dirk Eddelbuettel <[email protected]>

* inst/rmarkdown/templates/metropolis/resources/template.tex: Add a
new counter variable as needed by newer pandoc

2026-04-06 Rob J Hyndman <[email protected]>

* DESCRIPTION: Correct typo in two of the three 'aut' tags

2025-11-27 Dirk Eddelbuettel <[email protected]>

* .github/workflows/ci.yaml: Switch to actions/checkout@v6
Expand Down
2 changes: 2 additions & 0 deletions inst/rmarkdown/templates/iqss/resources/template.tex
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@
\makeatletter
\def\fnum@table{\tablename~\thetable}
\makeatother
% Borrowed from beamer_presentation for newer pandoc per issue #32
\newcounter{none} % for unnumbered tables
$endif$

$if(graphics)$
Expand Down
2 changes: 2 additions & 0 deletions inst/rmarkdown/templates/metropolis/resources/template.tex
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@
\makeatletter
\def\fnum@table{\tablename~\thetable}
\makeatother
% Borrowed from beamer_presentation for newer pandoc per issue #32
\newcounter{none} % for unnumbered tables
$endif$

$if(graphics)$
Expand Down
2 changes: 2 additions & 0 deletions inst/rmarkdown/templates/monash/resources/template.tex
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@
\makeatletter
\def\fnum@table{\tablename~\thetable}
\makeatother
% Borrowed from beamer_presentation for newer pandoc per issue #32
\newcounter{none} % for unnumbered tables
$endif$

$if(graphics)$
Expand Down
6 changes: 5 additions & 1 deletion inst/rmarkdown/templates/presento/resources/template.tex
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,10 @@
$endif$
$if(tables)$
\usepackage{longtable,booktabs}
% Borrowed from beamer_presentation for newer pandoc per issue #32
\newcounter{none} % for unnumbered tables
% Fix footnotes in tables (requires footnote package)
\IfFileExists{footnote.sty}{\usepackage{footnote}\makesavenoteenv{long table}}{}
%\IfFileExists{footnote.sty}{\usepackage{footnote}\makesavenoteenv{long table}}{}
$endif$
$if(graphics)$
\usepackage{graphicx,grffile}
Expand Down Expand Up @@ -268,6 +270,8 @@

%% presento end

\providecommand{\pandocbounded}[1]{#1}

\begin{document}
%% DEdd Commented-out for presento
%$if(title)$
Expand Down