Strange error of compilation with beamer, extract and hyperref package
up vote
1
down vote
favorite
I noticed a strange error of compilation.
After multiple tests, I noticed url and href{}{}
from hyperref
package systematically generated the following error
main.tex, line 31
Runaway argument?
{https://www.geogebra.org/m/ydz69yUz}{beamerbutton {Méthode de
NewtETC.
! Paragraph ended before next was complete.
<to be read again>
par
l.31 end{frame}
I am not as expert as most of you. But I lost my French on this question.
Here is MWE
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}
{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
beamer hyperref extract
add a comment |
up vote
1
down vote
favorite
I noticed a strange error of compilation.
After multiple tests, I noticed url and href{}{}
from hyperref
package systematically generated the following error
main.tex, line 31
Runaway argument?
{https://www.geogebra.org/m/ydz69yUz}{beamerbutton {Méthode de
NewtETC.
! Paragraph ended before next was complete.
<to be read again>
par
l.31 end{frame}
I am not as expert as most of you. But I lost my French on this question.
Here is MWE
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}
{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
beamer hyperref extract
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I noticed a strange error of compilation.
After multiple tests, I noticed url and href{}{}
from hyperref
package systematically generated the following error
main.tex, line 31
Runaway argument?
{https://www.geogebra.org/m/ydz69yUz}{beamerbutton {Méthode de
NewtETC.
! Paragraph ended before next was complete.
<to be read again>
par
l.31 end{frame}
I am not as expert as most of you. But I lost my French on this question.
Here is MWE
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}
{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
beamer hyperref extract
I noticed a strange error of compilation.
After multiple tests, I noticed url and href{}{}
from hyperref
package systematically generated the following error
main.tex, line 31
Runaway argument?
{https://www.geogebra.org/m/ydz69yUz}{beamerbutton {Méthode de
NewtETC.
! Paragraph ended before next was complete.
<to be read again>
par
l.31 end{frame}
I am not as expert as most of you. But I lost my French on this question.
Here is MWE
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}
{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
beamer hyperref extract
beamer hyperref extract
edited 3 hours ago
samcarter
83.7k794269
83.7k794269
asked 3 hours ago
Julien-Elie Taieb
3615
3615
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I'm not sure if combining the extract
package with beamer is a good idea -- depending on what you like to accomplish, there might be better ways.
Anyway, you can make your document compile by using a fragile
frame. Note that the resulting file.tex
is not really usable, it should wrap the contents in a frame environment.
Also note that you don't need to load hyperref
with beamer.
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}[fragile]
frametitle{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
Another solution is to use the extract
environment outside of a frame:
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
begin{frame}
frametitle{Geogebra}
end{frame}
end{document}
Thank you @samcarter ! I basically tried to extract all the urls to send them to my students. I don't like sending the whole pdf of my slides.
– Julien-Elie Taieb
3 hours ago
@Julien-ElieTaieb I see. Using different modes would probably be the beamer way to do this, e.g. beamer mode for the normal presentation and handout to create a slide with the urls.
– samcarter
2 hours ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I'm not sure if combining the extract
package with beamer is a good idea -- depending on what you like to accomplish, there might be better ways.
Anyway, you can make your document compile by using a fragile
frame. Note that the resulting file.tex
is not really usable, it should wrap the contents in a frame environment.
Also note that you don't need to load hyperref
with beamer.
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}[fragile]
frametitle{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
Another solution is to use the extract
environment outside of a frame:
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
begin{frame}
frametitle{Geogebra}
end{frame}
end{document}
Thank you @samcarter ! I basically tried to extract all the urls to send them to my students. I don't like sending the whole pdf of my slides.
– Julien-Elie Taieb
3 hours ago
@Julien-ElieTaieb I see. Using different modes would probably be the beamer way to do this, e.g. beamer mode for the normal presentation and handout to create a slide with the urls.
– samcarter
2 hours ago
add a comment |
up vote
0
down vote
I'm not sure if combining the extract
package with beamer is a good idea -- depending on what you like to accomplish, there might be better ways.
Anyway, you can make your document compile by using a fragile
frame. Note that the resulting file.tex
is not really usable, it should wrap the contents in a frame environment.
Also note that you don't need to load hyperref
with beamer.
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}[fragile]
frametitle{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
Another solution is to use the extract
environment outside of a frame:
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
begin{frame}
frametitle{Geogebra}
end{frame}
end{document}
Thank you @samcarter ! I basically tried to extract all the urls to send them to my students. I don't like sending the whole pdf of my slides.
– Julien-Elie Taieb
3 hours ago
@Julien-ElieTaieb I see. Using different modes would probably be the beamer way to do this, e.g. beamer mode for the normal presentation and handout to create a slide with the urls.
– samcarter
2 hours ago
add a comment |
up vote
0
down vote
up vote
0
down vote
I'm not sure if combining the extract
package with beamer is a good idea -- depending on what you like to accomplish, there might be better ways.
Anyway, you can make your document compile by using a fragile
frame. Note that the resulting file.tex
is not really usable, it should wrap the contents in a frame environment.
Also note that you don't need to load hyperref
with beamer.
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}[fragile]
frametitle{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
Another solution is to use the extract
environment outside of a frame:
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
begin{frame}
frametitle{Geogebra}
end{frame}
end{document}
I'm not sure if combining the extract
package with beamer is a good idea -- depending on what you like to accomplish, there might be better ways.
Anyway, you can make your document compile by using a fragile
frame. Note that the resulting file.tex
is not really usable, it should wrap the contents in a frame environment.
Also note that you don't need to load hyperref
with beamer.
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{frame}[fragile]
frametitle{Geogebra}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
end{frame}
end{document}
Another solution is to use the extract
environment outside of a frame:
documentclass{beamer}
usepackage[utf8]{inputenc}
%usepackage{hyperref}
usepackage[active,generate=file.tex]{extract}
begin{document}
begin{extract}
href{https://www.geogebra.org/m/ydz69yUz}{Description}
url{https://www.geogebra.org/m/ntbtfxGJ}
url{https://www.geogebra.org/m/Ehnz3hGb}
end{extract}
begin{frame}
frametitle{Geogebra}
end{frame}
end{document}
edited 2 hours ago
answered 3 hours ago
samcarter
83.7k794269
83.7k794269
Thank you @samcarter ! I basically tried to extract all the urls to send them to my students. I don't like sending the whole pdf of my slides.
– Julien-Elie Taieb
3 hours ago
@Julien-ElieTaieb I see. Using different modes would probably be the beamer way to do this, e.g. beamer mode for the normal presentation and handout to create a slide with the urls.
– samcarter
2 hours ago
add a comment |
Thank you @samcarter ! I basically tried to extract all the urls to send them to my students. I don't like sending the whole pdf of my slides.
– Julien-Elie Taieb
3 hours ago
@Julien-ElieTaieb I see. Using different modes would probably be the beamer way to do this, e.g. beamer mode for the normal presentation and handout to create a slide with the urls.
– samcarter
2 hours ago
Thank you @samcarter ! I basically tried to extract all the urls to send them to my students. I don't like sending the whole pdf of my slides.
– Julien-Elie Taieb
3 hours ago
Thank you @samcarter ! I basically tried to extract all the urls to send them to my students. I don't like sending the whole pdf of my slides.
– Julien-Elie Taieb
3 hours ago
@Julien-ElieTaieb I see. Using different modes would probably be the beamer way to do this, e.g. beamer mode for the normal presentation and handout to create a slide with the urls.
– samcarter
2 hours ago
@Julien-ElieTaieb I see. Using different modes would probably be the beamer way to do this, e.g. beamer mode for the normal presentation and handout to create a slide with the urls.
– samcarter
2 hours ago
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f464419%2fstrange-error-of-compilation-with-beamer-extract-and-hyperref-package%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