How to make slide in latex
up vote
1
down vote
favorite
I want to create a presentation about English Tense in latex. Till now I create three slide. 1st slide is a title slide. 2nd slide is for Content slide,3rd is a outline slide of my full presentation.
Code
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1:Outline of the document}[***Problem: When I click here I want to go to Outline of the document slide only.How to navigate to a particular slide*** ]
section{Section 2:Present Simple vs Present Continuous}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}{Outline of the document}
begin{itemize}
item Present Simple vs Present Continuous[***Problem: I want to create a navigation here also. So when the user click on it, it navigate to Present Simple vs Present Continuous slide***]
end{itemize}
end{frame}
begin{frame}{Present Simple vs Present Continuous}[***Want to add two sentence under the present simple vs present continuous***]
end{frame}
end{document}
I added here a picture to show what I want exactly
I am trying to see what I actually want in this picture. In the picture the sentence with blue color represent link. in slide 3 as per picture when user click on Present Simple vs Present continuous it navigate to slide 4 which describe broadly present simple vs present continuous.
beamer itemize framed
add a comment |
up vote
1
down vote
favorite
I want to create a presentation about English Tense in latex. Till now I create three slide. 1st slide is a title slide. 2nd slide is for Content slide,3rd is a outline slide of my full presentation.
Code
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1:Outline of the document}[***Problem: When I click here I want to go to Outline of the document slide only.How to navigate to a particular slide*** ]
section{Section 2:Present Simple vs Present Continuous}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}{Outline of the document}
begin{itemize}
item Present Simple vs Present Continuous[***Problem: I want to create a navigation here also. So when the user click on it, it navigate to Present Simple vs Present Continuous slide***]
end{itemize}
end{frame}
begin{frame}{Present Simple vs Present Continuous}[***Want to add two sentence under the present simple vs present continuous***]
end{frame}
end{document}
I added here a picture to show what I want exactly
I am trying to see what I actually want in this picture. In the picture the sentence with blue color represent link. in slide 3 as per picture when user click on Present Simple vs Present continuous it navigate to slide 4 which describe broadly present simple vs present continuous.
beamer itemize framed
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I want to create a presentation about English Tense in latex. Till now I create three slide. 1st slide is a title slide. 2nd slide is for Content slide,3rd is a outline slide of my full presentation.
Code
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1:Outline of the document}[***Problem: When I click here I want to go to Outline of the document slide only.How to navigate to a particular slide*** ]
section{Section 2:Present Simple vs Present Continuous}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}{Outline of the document}
begin{itemize}
item Present Simple vs Present Continuous[***Problem: I want to create a navigation here also. So when the user click on it, it navigate to Present Simple vs Present Continuous slide***]
end{itemize}
end{frame}
begin{frame}{Present Simple vs Present Continuous}[***Want to add two sentence under the present simple vs present continuous***]
end{frame}
end{document}
I added here a picture to show what I want exactly
I am trying to see what I actually want in this picture. In the picture the sentence with blue color represent link. in slide 3 as per picture when user click on Present Simple vs Present continuous it navigate to slide 4 which describe broadly present simple vs present continuous.
beamer itemize framed
I want to create a presentation about English Tense in latex. Till now I create three slide. 1st slide is a title slide. 2nd slide is for Content slide,3rd is a outline slide of my full presentation.
Code
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1:Outline of the document}[***Problem: When I click here I want to go to Outline of the document slide only.How to navigate to a particular slide*** ]
section{Section 2:Present Simple vs Present Continuous}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}{Outline of the document}
begin{itemize}
item Present Simple vs Present Continuous[***Problem: I want to create a navigation here also. So when the user click on it, it navigate to Present Simple vs Present Continuous slide***]
end{itemize}
end{frame}
begin{frame}{Present Simple vs Present Continuous}[***Want to add two sentence under the present simple vs present continuous***]
end{frame}
end{document}
I added here a picture to show what I want exactly
I am trying to see what I actually want in this picture. In the picture the sentence with blue color represent link. in slide 3 as per picture when user click on Present Simple vs Present continuous it navigate to slide 4 which describe broadly present simple vs present continuous.
beamer itemize framed
beamer itemize framed
edited Dec 5 at 20:46
CarLaTeX
28.6k446122
28.6k446122
asked Dec 5 at 20:36
Encipher
925
925
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
The table of contents will automatically link to the correct slides if don't place all your section
s at the start of the document, but at the place where each of the sections starts in your code
If you still need to manually insert links, you can label your frames and use hyperlink{<labelname>}{Text}
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1: Outline of the document}
begin{frame}{Outline of the document}
begin{itemize}
item hyperlink{foo}{Present Simple vs Present Continuous}
end{itemize}
end{frame}
section{Section 2: Present Simple vs Present Continuous}
begin{frame}[label=foo]{Present Simple vs Present Continuous}
end{frame}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}[label=bar]{Present Continuous vs Present Perfect Continuous}
end{frame}
end{document}
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
accepted
The table of contents will automatically link to the correct slides if don't place all your section
s at the start of the document, but at the place where each of the sections starts in your code
If you still need to manually insert links, you can label your frames and use hyperlink{<labelname>}{Text}
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1: Outline of the document}
begin{frame}{Outline of the document}
begin{itemize}
item hyperlink{foo}{Present Simple vs Present Continuous}
end{itemize}
end{frame}
section{Section 2: Present Simple vs Present Continuous}
begin{frame}[label=foo]{Present Simple vs Present Continuous}
end{frame}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}[label=bar]{Present Continuous vs Present Perfect Continuous}
end{frame}
end{document}
add a comment |
up vote
0
down vote
accepted
The table of contents will automatically link to the correct slides if don't place all your section
s at the start of the document, but at the place where each of the sections starts in your code
If you still need to manually insert links, you can label your frames and use hyperlink{<labelname>}{Text}
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1: Outline of the document}
begin{frame}{Outline of the document}
begin{itemize}
item hyperlink{foo}{Present Simple vs Present Continuous}
end{itemize}
end{frame}
section{Section 2: Present Simple vs Present Continuous}
begin{frame}[label=foo]{Present Simple vs Present Continuous}
end{frame}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}[label=bar]{Present Continuous vs Present Perfect Continuous}
end{frame}
end{document}
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The table of contents will automatically link to the correct slides if don't place all your section
s at the start of the document, but at the place where each of the sections starts in your code
If you still need to manually insert links, you can label your frames and use hyperlink{<labelname>}{Text}
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1: Outline of the document}
begin{frame}{Outline of the document}
begin{itemize}
item hyperlink{foo}{Present Simple vs Present Continuous}
end{itemize}
end{frame}
section{Section 2: Present Simple vs Present Continuous}
begin{frame}[label=foo]{Present Simple vs Present Continuous}
end{frame}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}[label=bar]{Present Continuous vs Present Perfect Continuous}
end{frame}
end{document}
The table of contents will automatically link to the correct slides if don't place all your section
s at the start of the document, but at the place where each of the sections starts in your code
If you still need to manually insert links, you can label your frames and use hyperlink{<labelname>}{Text}
documentclass{beamer}
usepackage[utf8]{inputenc}
usetheme{Montpellier}
title{Tense at a Glance}
date{December 2018}
begin{document}
begin{frame}
maketitle
end{frame}
begin{frame}{Content}
tableofcontents
end{frame}
section{Section 1: Outline of the document}
begin{frame}{Outline of the document}
begin{itemize}
item hyperlink{foo}{Present Simple vs Present Continuous}
end{itemize}
end{frame}
section{Section 2: Present Simple vs Present Continuous}
begin{frame}[label=foo]{Present Simple vs Present Continuous}
end{frame}
section{Section 3: Present Continuous vs Present Perfect Continuous }
begin{frame}[label=bar]{Present Continuous vs Present Perfect Continuous}
end{frame}
end{document}
answered Dec 7 at 1:28
samcarter
83.9k794269
83.9k794269
add a comment |
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%2f463392%2fhow-to-make-slide-in-latex%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