TOC is not appearing properly [closed]
I am trying to do a list with itemize but in beamer, the bullets are not shown and I cannot find the reason why.
RequirePackage{flashmovie}
documentclass[12pt]{beamer}
setbeamertemplate{footline}
{
leavevmode%
hbox{%
insertframenumber{} / inserttotalframenumberhspace*{2ex}
}
vskip0pt%
}
usepackage{animate}
usepackage{tabularx}
usepackage{amsmath,amsfonts, amssymb}
usepackage{cancel}
usepackage{mathtools}
usepackage[version=4]{mhchem}
usecolortheme{seahorse}
usetheme{Goettingen}
title{Titulo}
subtitle{III-2018}
institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed)
{
begin{center}
normalsize{Universidad}
end{center}
}
date{Bogot'a}
AtBeginSubsection
{
begin{frame}<beamer>{Tabla de contenidos}
tableofcontents[currentsection,currentsubsection]
end{frame}
}
% Let's get started
begin{document}
begin{frame}
titlepage
end{frame}
section{a}
subsection{}
begin{frame}
begin{itemize}
item prueba
end{itemize}
end{frame}
section{b}
end{document}
The file that I am working on is shown below (Look at the right to see the toc error not appearing on its own slide):
beamer table-of-contents
closed as unclear what you're asking by samcarter, Kurt, Phelype Oleinik, Rico, Raaja Jan 29 at 14:00
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I am trying to do a list with itemize but in beamer, the bullets are not shown and I cannot find the reason why.
RequirePackage{flashmovie}
documentclass[12pt]{beamer}
setbeamertemplate{footline}
{
leavevmode%
hbox{%
insertframenumber{} / inserttotalframenumberhspace*{2ex}
}
vskip0pt%
}
usepackage{animate}
usepackage{tabularx}
usepackage{amsmath,amsfonts, amssymb}
usepackage{cancel}
usepackage{mathtools}
usepackage[version=4]{mhchem}
usecolortheme{seahorse}
usetheme{Goettingen}
title{Titulo}
subtitle{III-2018}
institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed)
{
begin{center}
normalsize{Universidad}
end{center}
}
date{Bogot'a}
AtBeginSubsection
{
begin{frame}<beamer>{Tabla de contenidos}
tableofcontents[currentsection,currentsubsection]
end{frame}
}
% Let's get started
begin{document}
begin{frame}
titlepage
end{frame}
section{a}
subsection{}
begin{frame}
begin{itemize}
item prueba
end{itemize}
end{frame}
section{b}
end{document}
The file that I am working on is shown below (Look at the right to see the toc error not appearing on its own slide):
beamer table-of-contents
closed as unclear what you're asking by samcarter, Kurt, Phelype Oleinik, Rico, Raaja Jan 29 at 14:00
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
2
Could you please remove in this and in your previous question all packages that are not used? And if you make the subsection nonempty, e.g.subsection{aa}
instead ofsubsection{}
then it works as expected.
– marmot
Jan 28 at 3:32
It is not necessary to repeat all your tags in the title of the question. That's what tags are for. Can you also disentangle your problem with the toc and the problem of missing itemize bullets?
– samcarter
Jan 28 at 10:03
1
In addition to what @marmot explained about the empty subsection, the second problem is that only (sub)section that actually contain a frame will be shown in the sidebar. This means that yoursection{b}
need to have at least one frame to be added to the sidebar.
– samcarter
Jan 28 at 16:40
add a comment |
I am trying to do a list with itemize but in beamer, the bullets are not shown and I cannot find the reason why.
RequirePackage{flashmovie}
documentclass[12pt]{beamer}
setbeamertemplate{footline}
{
leavevmode%
hbox{%
insertframenumber{} / inserttotalframenumberhspace*{2ex}
}
vskip0pt%
}
usepackage{animate}
usepackage{tabularx}
usepackage{amsmath,amsfonts, amssymb}
usepackage{cancel}
usepackage{mathtools}
usepackage[version=4]{mhchem}
usecolortheme{seahorse}
usetheme{Goettingen}
title{Titulo}
subtitle{III-2018}
institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed)
{
begin{center}
normalsize{Universidad}
end{center}
}
date{Bogot'a}
AtBeginSubsection
{
begin{frame}<beamer>{Tabla de contenidos}
tableofcontents[currentsection,currentsubsection]
end{frame}
}
% Let's get started
begin{document}
begin{frame}
titlepage
end{frame}
section{a}
subsection{}
begin{frame}
begin{itemize}
item prueba
end{itemize}
end{frame}
section{b}
end{document}
The file that I am working on is shown below (Look at the right to see the toc error not appearing on its own slide):
beamer table-of-contents
I am trying to do a list with itemize but in beamer, the bullets are not shown and I cannot find the reason why.
RequirePackage{flashmovie}
documentclass[12pt]{beamer}
setbeamertemplate{footline}
{
leavevmode%
hbox{%
insertframenumber{} / inserttotalframenumberhspace*{2ex}
}
vskip0pt%
}
usepackage{animate}
usepackage{tabularx}
usepackage{amsmath,amsfonts, amssymb}
usepackage{cancel}
usepackage{mathtools}
usepackage[version=4]{mhchem}
usecolortheme{seahorse}
usetheme{Goettingen}
title{Titulo}
subtitle{III-2018}
institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed)
{
begin{center}
normalsize{Universidad}
end{center}
}
date{Bogot'a}
AtBeginSubsection
{
begin{frame}<beamer>{Tabla de contenidos}
tableofcontents[currentsection,currentsubsection]
end{frame}
}
% Let's get started
begin{document}
begin{frame}
titlepage
end{frame}
section{a}
subsection{}
begin{frame}
begin{itemize}
item prueba
end{itemize}
end{frame}
section{b}
end{document}
The file that I am working on is shown below (Look at the right to see the toc error not appearing on its own slide):
beamer table-of-contents
beamer table-of-contents
edited Jan 28 at 10:03
samcarter
89.1k799286
89.1k799286
asked Jan 28 at 3:18
Another.ChemistAnother.Chemist
3972414
3972414
closed as unclear what you're asking by samcarter, Kurt, Phelype Oleinik, Rico, Raaja Jan 29 at 14:00
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by samcarter, Kurt, Phelype Oleinik, Rico, Raaja Jan 29 at 14:00
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
2
Could you please remove in this and in your previous question all packages that are not used? And if you make the subsection nonempty, e.g.subsection{aa}
instead ofsubsection{}
then it works as expected.
– marmot
Jan 28 at 3:32
It is not necessary to repeat all your tags in the title of the question. That's what tags are for. Can you also disentangle your problem with the toc and the problem of missing itemize bullets?
– samcarter
Jan 28 at 10:03
1
In addition to what @marmot explained about the empty subsection, the second problem is that only (sub)section that actually contain a frame will be shown in the sidebar. This means that yoursection{b}
need to have at least one frame to be added to the sidebar.
– samcarter
Jan 28 at 16:40
add a comment |
2
Could you please remove in this and in your previous question all packages that are not used? And if you make the subsection nonempty, e.g.subsection{aa}
instead ofsubsection{}
then it works as expected.
– marmot
Jan 28 at 3:32
It is not necessary to repeat all your tags in the title of the question. That's what tags are for. Can you also disentangle your problem with the toc and the problem of missing itemize bullets?
– samcarter
Jan 28 at 10:03
1
In addition to what @marmot explained about the empty subsection, the second problem is that only (sub)section that actually contain a frame will be shown in the sidebar. This means that yoursection{b}
need to have at least one frame to be added to the sidebar.
– samcarter
Jan 28 at 16:40
2
2
Could you please remove in this and in your previous question all packages that are not used? And if you make the subsection nonempty, e.g.
subsection{aa}
instead of subsection{}
then it works as expected.– marmot
Jan 28 at 3:32
Could you please remove in this and in your previous question all packages that are not used? And if you make the subsection nonempty, e.g.
subsection{aa}
instead of subsection{}
then it works as expected.– marmot
Jan 28 at 3:32
It is not necessary to repeat all your tags in the title of the question. That's what tags are for. Can you also disentangle your problem with the toc and the problem of missing itemize bullets?
– samcarter
Jan 28 at 10:03
It is not necessary to repeat all your tags in the title of the question. That's what tags are for. Can you also disentangle your problem with the toc and the problem of missing itemize bullets?
– samcarter
Jan 28 at 10:03
1
1
In addition to what @marmot explained about the empty subsection, the second problem is that only (sub)section that actually contain a frame will be shown in the sidebar. This means that your
section{b}
need to have at least one frame to be added to the sidebar.– samcarter
Jan 28 at 16:40
In addition to what @marmot explained about the empty subsection, the second problem is that only (sub)section that actually contain a frame will be shown in the sidebar. This means that your
section{b}
need to have at least one frame to be added to the sidebar.– samcarter
Jan 28 at 16:40
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
2
Could you please remove in this and in your previous question all packages that are not used? And if you make the subsection nonempty, e.g.
subsection{aa}
instead ofsubsection{}
then it works as expected.– marmot
Jan 28 at 3:32
It is not necessary to repeat all your tags in the title of the question. That's what tags are for. Can you also disentangle your problem with the toc and the problem of missing itemize bullets?
– samcarter
Jan 28 at 10:03
1
In addition to what @marmot explained about the empty subsection, the second problem is that only (sub)section that actually contain a frame will be shown in the sidebar. This means that your
section{b}
need to have at least one frame to be added to the sidebar.– samcarter
Jan 28 at 16:40