Skip to content

Commit

Permalink
Merge pull request #208 from ssayols/multipage_abbreviations
Browse files Browse the repository at this point in the history
multipage list of abbreviations
  • Loading branch information
ismayc authored Oct 15, 2024
2 parents 541b556 + b61659c commit 9cf291a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
13 changes: 5 additions & 8 deletions inst/rmarkdown/templates/thesis/skeleton/template.tex
Original file line number Diff line number Diff line change
Expand Up @@ -209,14 +209,11 @@

$if(abbreviations)$
\chapter*{List of Abbreviations}
\begin{table}[h]
\centering
\begin{tabular}{ll}
$for(abbreviations/pairs)$
\textbf{$it.key$} & $it.value$ \\
$endfor$
\end{tabular}
\end{table}
\begin{longtable}{p{.20\textwidth} | p{.80\textwidth}}
$for(abbreviations/pairs)$
\textbf{$it.key$} & $it.value$ \\
$endfor$
\end{longtable}
$endif$

$if(toc)$
Expand Down
13 changes: 5 additions & 8 deletions inst/rstudio/templates/project/resources/template.tex
Original file line number Diff line number Diff line change
Expand Up @@ -209,14 +209,11 @@

$if(abbreviations)$
\chapter*{List of Abbreviations}
\begin{table}[h]
\centering
\begin{tabular}{ll}
$for(abbreviations/pairs)$
\textbf{$it.key$} & $it.value$ \\
$endfor$
\end{tabular}
\end{table}
\begin{longtable}{p{.20\textwidth} | p{.80\textwidth}}
$for(abbreviations/pairs)$
\textbf{$it.key$} & $it.value$ \\
$endfor$
\end{longtable}
$endif$

$if(toc)$
Expand Down

0 comments on commit 9cf291a

Please sign in to comment.