Skip to content

Commit

Permalink
Move nocite command inside frame
Browse files Browse the repository at this point in the history
The template uses the ignorenonframetext option.
The nocite command would be ignored in the place it was.
  • Loading branch information
twsh authored Dec 18, 2024
1 parent 8fa93e8 commit dc54451
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions data/templates/default.beamer
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,6 @@ $if(linestretch)$
$endif$
$body$

$if(nocite-ids)$
\nocite{$for(nocite-ids)$$it$$sep$, $endfor$}
$endif$
$if(natbib)$
$if(bibliography)$
$if(biblio-title)$
Expand All @@ -181,6 +178,9 @@ $else$
$endif$
$endif$
\begin{frame}[allowframebreaks]{$biblio-title$}
$if(nocite-ids)$
\nocite{$for(nocite-ids)$$it$$sep$, $endfor$}
$endif$
\bibliographytrue
\bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$}
\end{frame}
Expand All @@ -189,6 +189,9 @@ $endif$
$endif$
$if(biblatex)$
\begin{frame}[allowframebreaks]{$biblio-title$}
$if(nocite-ids)$
\nocite{$for(nocite-ids)$$it$$sep$, $endfor$}
$endif$
\bibliographytrue
\printbibliography[heading=none]
\end{frame}
Expand Down

0 comments on commit dc54451

Please sign in to comment.