Make source stick (ignore pause command)
I'm making a presentation in LaTeX using the beamer
document class, and have the following question:
I'm using pause
in my slides. However, in some slides, I have a source at the bottom of the page. How can I make this source appear in every "version" of the slide (i.e., not just after the final pause
has passed)?
Edit: Minimal working example:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
$$
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
$$
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
tiny
vspace{stretch{100}} J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.
end{frame}
end{document}
I want the source at the bottom to be visible on every slide, not just after on the third.
beamer pause
add a comment |
I'm making a presentation in LaTeX using the beamer
document class, and have the following question:
I'm using pause
in my slides. However, in some slides, I have a source at the bottom of the page. How can I make this source appear in every "version" of the slide (i.e., not just after the final pause
has passed)?
Edit: Minimal working example:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
$$
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
$$
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
tiny
vspace{stretch{100}} J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.
end{frame}
end{document}
I want the source at the bottom to be visible on every slide, not just after on the third.
beamer pause
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
Mar 8 at 11:01
You can use commands likeonslide
etc. (the overlay commands are documented in the beamer user guide).
– TeXnician
Mar 8 at 11:02
add a comment |
I'm making a presentation in LaTeX using the beamer
document class, and have the following question:
I'm using pause
in my slides. However, in some slides, I have a source at the bottom of the page. How can I make this source appear in every "version" of the slide (i.e., not just after the final pause
has passed)?
Edit: Minimal working example:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
$$
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
$$
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
tiny
vspace{stretch{100}} J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.
end{frame}
end{document}
I want the source at the bottom to be visible on every slide, not just after on the third.
beamer pause
I'm making a presentation in LaTeX using the beamer
document class, and have the following question:
I'm using pause
in my slides. However, in some slides, I have a source at the bottom of the page. How can I make this source appear in every "version" of the slide (i.e., not just after the final pause
has passed)?
Edit: Minimal working example:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
$$
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
$$
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
tiny
vspace{stretch{100}} J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.
end{frame}
end{document}
I want the source at the bottom to be visible on every slide, not just after on the third.
beamer pause
beamer pause
edited Mar 8 at 12:05
JouleV
5,97821549
5,97821549
asked Mar 8 at 10:55
ProtawnProtawn
1084
1084
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
Mar 8 at 11:01
You can use commands likeonslide
etc. (the overlay commands are documented in the beamer user guide).
– TeXnician
Mar 8 at 11:02
add a comment |
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
Mar 8 at 11:01
You can use commands likeonslide
etc. (the overlay commands are documented in the beamer user guide).
– TeXnician
Mar 8 at 11:02
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
Mar 8 at 11:01
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
Mar 8 at 11:01
You can use commands like
onslide
etc. (the overlay commands are documented in the beamer user guide).– TeXnician
Mar 8 at 11:02
You can use commands like
onslide
etc. (the overlay commands are documented in the beamer user guide).– TeXnician
Mar 8 at 11:02
add a comment |
1 Answer
1
active
oldest
votes
Instead of manually adding the source, you could add it as unnumbered footnote - this way it will automatically be displayed from the first slide in the frame:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
renewcommand{footnoterule}{}
newcommandsource[1]{%
begingroup
setbeamertemplate{footnote}{%
parindent 1emnoindent%
raggedright
insertfootnotetextpar%
}
setbeamerfont{footnote}{size=tiny}
footnotetext{#1}
endgroup
}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
[
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
]
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
source{J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.}
end{frame}
end{document}
Off-topic: you should not use $$...$$
, see Why is [ ... ] preferable to $$ ... $$?
ahh this is exactly what I wanted, TYVM!
– Protawn
Mar 8 at 11:50
@Protawn You're welcome!
– samcarter
Mar 8 at 11:51
What should I use instead of $$..$$? (or rather, what is ``better'' about [ ])
– Protawn
Mar 8 at 11:51
@Protawn I just added a link that explains it
– samcarter
Mar 8 at 11:52
perfect, thanks!
– Protawn
Mar 8 at 11:52
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f478395%2fmake-source-stick-ignore-pause-command%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Instead of manually adding the source, you could add it as unnumbered footnote - this way it will automatically be displayed from the first slide in the frame:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
renewcommand{footnoterule}{}
newcommandsource[1]{%
begingroup
setbeamertemplate{footnote}{%
parindent 1emnoindent%
raggedright
insertfootnotetextpar%
}
setbeamerfont{footnote}{size=tiny}
footnotetext{#1}
endgroup
}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
[
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
]
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
source{J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.}
end{frame}
end{document}
Off-topic: you should not use $$...$$
, see Why is [ ... ] preferable to $$ ... $$?
ahh this is exactly what I wanted, TYVM!
– Protawn
Mar 8 at 11:50
@Protawn You're welcome!
– samcarter
Mar 8 at 11:51
What should I use instead of $$..$$? (or rather, what is ``better'' about [ ])
– Protawn
Mar 8 at 11:51
@Protawn I just added a link that explains it
– samcarter
Mar 8 at 11:52
perfect, thanks!
– Protawn
Mar 8 at 11:52
add a comment |
Instead of manually adding the source, you could add it as unnumbered footnote - this way it will automatically be displayed from the first slide in the frame:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
renewcommand{footnoterule}{}
newcommandsource[1]{%
begingroup
setbeamertemplate{footnote}{%
parindent 1emnoindent%
raggedright
insertfootnotetextpar%
}
setbeamerfont{footnote}{size=tiny}
footnotetext{#1}
endgroup
}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
[
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
]
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
source{J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.}
end{frame}
end{document}
Off-topic: you should not use $$...$$
, see Why is [ ... ] preferable to $$ ... $$?
ahh this is exactly what I wanted, TYVM!
– Protawn
Mar 8 at 11:50
@Protawn You're welcome!
– samcarter
Mar 8 at 11:51
What should I use instead of $$..$$? (or rather, what is ``better'' about [ ])
– Protawn
Mar 8 at 11:51
@Protawn I just added a link that explains it
– samcarter
Mar 8 at 11:52
perfect, thanks!
– Protawn
Mar 8 at 11:52
add a comment |
Instead of manually adding the source, you could add it as unnumbered footnote - this way it will automatically be displayed from the first slide in the frame:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
renewcommand{footnoterule}{}
newcommandsource[1]{%
begingroup
setbeamertemplate{footnote}{%
parindent 1emnoindent%
raggedright
insertfootnotetextpar%
}
setbeamerfont{footnote}{size=tiny}
footnotetext{#1}
endgroup
}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
[
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
]
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
source{J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.}
end{frame}
end{document}
Off-topic: you should not use $$...$$
, see Why is [ ... ] preferable to $$ ... $$?
Instead of manually adding the source, you could add it as unnumbered footnote - this way it will automatically be displayed from the first slide in the frame:
documentclass[aspectratio=169]{beamer}
usepackage[english]{babel}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
renewcommand{footnoterule}{}
newcommandsource[1]{%
begingroup
setbeamertemplate{footnote}{%
parindent 1emnoindent%
raggedright
insertfootnotetextpar%
}
setbeamerfont{footnote}{size=tiny}
footnotetext{#1}
endgroup
}
begin{document}
begin{frame}
frametitle{Recall: Kronecker Product}
Let $Ainmathbb{R}^{mtimes n}$ and $B$ be some other matrix.
[
Aotimes B :=
begin{bmatrix}
A_{1,1}cdot B & cdots & A_{1,n}cdot B \
vdots & ddots & vdots \
A_{m,1}cdot B & cdots & A_{m,n}cdot B
end{bmatrix}
]
pause Important properties:
begin{itemize}
item $ (Aotimes B)^{-1} = A^{-1}otimes B^{-1}$.pause
item $ (Aotimes B)(Cotimes D) = (ACotimes BD)$ small (if well-defined)
end{itemize}
source{J. Martens and R. Grosse. Optimizing neural networks with kronecker-factored approximate curvature. ICML, 2015.}
end{frame}
end{document}
Off-topic: you should not use $$...$$
, see Why is [ ... ] preferable to $$ ... $$?
edited Mar 8 at 11:51
answered Mar 8 at 11:47
samcartersamcarter
91.8k7105297
91.8k7105297
ahh this is exactly what I wanted, TYVM!
– Protawn
Mar 8 at 11:50
@Protawn You're welcome!
– samcarter
Mar 8 at 11:51
What should I use instead of $$..$$? (or rather, what is ``better'' about [ ])
– Protawn
Mar 8 at 11:51
@Protawn I just added a link that explains it
– samcarter
Mar 8 at 11:52
perfect, thanks!
– Protawn
Mar 8 at 11:52
add a comment |
ahh this is exactly what I wanted, TYVM!
– Protawn
Mar 8 at 11:50
@Protawn You're welcome!
– samcarter
Mar 8 at 11:51
What should I use instead of $$..$$? (or rather, what is ``better'' about [ ])
– Protawn
Mar 8 at 11:51
@Protawn I just added a link that explains it
– samcarter
Mar 8 at 11:52
perfect, thanks!
– Protawn
Mar 8 at 11:52
ahh this is exactly what I wanted, TYVM!
– Protawn
Mar 8 at 11:50
ahh this is exactly what I wanted, TYVM!
– Protawn
Mar 8 at 11:50
@Protawn You're welcome!
– samcarter
Mar 8 at 11:51
@Protawn You're welcome!
– samcarter
Mar 8 at 11:51
What should I use instead of $$..$$? (or rather, what is ``better'' about [ ])
– Protawn
Mar 8 at 11:51
What should I use instead of $$..$$? (or rather, what is ``better'' about [ ])
– Protawn
Mar 8 at 11:51
@Protawn I just added a link that explains it
– samcarter
Mar 8 at 11:52
@Protawn I just added a link that explains it
– samcarter
Mar 8 at 11:52
perfect, thanks!
– Protawn
Mar 8 at 11:52
perfect, thanks!
– Protawn
Mar 8 at 11:52
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f478395%2fmake-source-stick-ignore-pause-command%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
Mar 8 at 11:01
You can use commands like
onslide
etc. (the overlay commands are documented in the beamer user guide).– TeXnician
Mar 8 at 11:02