How to use ball style for enumerate list-
up vote
1
down vote
favorite
I want to use, ball style for an "enumerate list", specifically I want to include this ball item style in the part of my code where is written "ball", I have tried to add this option adding the optional command "[label=ball]", but it seems that is not working. How could I add this feature to my beamer presentation?
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{enumitem}
begin{document}
begin{frame}{Conclusiones}
begin{itemize}[label=ball]
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}[label=$ast$]
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
beamer lists enumitem
add a comment |
up vote
1
down vote
favorite
I want to use, ball style for an "enumerate list", specifically I want to include this ball item style in the part of my code where is written "ball", I have tried to add this option adding the optional command "[label=ball]", but it seems that is not working. How could I add this feature to my beamer presentation?
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{enumitem}
begin{document}
begin{frame}{Conclusiones}
begin{itemize}[label=ball]
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}[label=$ast$]
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
beamer lists enumitem
While you wait for an answer to this question, can you go back to your previous ones and look if the answers solve your problems and accept them, if they do?
– samcarter
5 hours ago
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I want to use, ball style for an "enumerate list", specifically I want to include this ball item style in the part of my code where is written "ball", I have tried to add this option adding the optional command "[label=ball]", but it seems that is not working. How could I add this feature to my beamer presentation?
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{enumitem}
begin{document}
begin{frame}{Conclusiones}
begin{itemize}[label=ball]
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}[label=$ast$]
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
beamer lists enumitem
I want to use, ball style for an "enumerate list", specifically I want to include this ball item style in the part of my code where is written "ball", I have tried to add this option adding the optional command "[label=ball]", but it seems that is not working. How could I add this feature to my beamer presentation?
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{enumitem}
begin{document}
begin{frame}{Conclusiones}
begin{itemize}[label=ball]
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}[label=$ast$]
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
beamer lists enumitem
beamer lists enumitem
asked 6 hours ago
JuanMuñoz
4871414
4871414
While you wait for an answer to this question, can you go back to your previous ones and look if the answers solve your problems and accept them, if they do?
– samcarter
5 hours ago
add a comment |
While you wait for an answer to this question, can you go back to your previous ones and look if the answers solve your problems and accept them, if they do?
– samcarter
5 hours ago
While you wait for an answer to this question, can you go back to your previous ones and look if the answers solve your problems and accept them, if they do?
– samcarter
5 hours ago
While you wait for an answer to this question, can you go back to your previous ones and look if the answers solve your problems and accept them, if they do?
– samcarter
5 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
Don't use the enumitem
package with beamer, they are incompatible. Instead you can use the ball
template that beamer provides for you:
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
%usepackage{enumitem}
setbeamertemplate{itemize item}[ball]
setbeamertemplate{enumerate item}[ball]
begin{document}
begin{frame}{Conclusiones}
begin{itemize}
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
You erased an important part of the code, this part consisted in the addition of an asterisk in the nested enumerate list. I need to preserve this asterisk. I am looking for the ball, just in the first enumerate.
– JuanMuñoz
6 hours ago
1
@JuanMuñoz If you want an asterisk in the enumeration, usesetbeamertemplate{enumerate item}{$ast$}
. But why are you using anenumerate
environment, when you won't show numbers but asterisk?
– samcarter
5 hours ago
@JuanMuñoz And why are you asking for a ball in an enumerate list if you apparently want to change an itemize list? I'm confused!
– samcarter
5 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
3
down vote
accepted
Don't use the enumitem
package with beamer, they are incompatible. Instead you can use the ball
template that beamer provides for you:
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
%usepackage{enumitem}
setbeamertemplate{itemize item}[ball]
setbeamertemplate{enumerate item}[ball]
begin{document}
begin{frame}{Conclusiones}
begin{itemize}
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
You erased an important part of the code, this part consisted in the addition of an asterisk in the nested enumerate list. I need to preserve this asterisk. I am looking for the ball, just in the first enumerate.
– JuanMuñoz
6 hours ago
1
@JuanMuñoz If you want an asterisk in the enumeration, usesetbeamertemplate{enumerate item}{$ast$}
. But why are you using anenumerate
environment, when you won't show numbers but asterisk?
– samcarter
5 hours ago
@JuanMuñoz And why are you asking for a ball in an enumerate list if you apparently want to change an itemize list? I'm confused!
– samcarter
5 hours ago
add a comment |
up vote
3
down vote
accepted
Don't use the enumitem
package with beamer, they are incompatible. Instead you can use the ball
template that beamer provides for you:
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
%usepackage{enumitem}
setbeamertemplate{itemize item}[ball]
setbeamertemplate{enumerate item}[ball]
begin{document}
begin{frame}{Conclusiones}
begin{itemize}
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
You erased an important part of the code, this part consisted in the addition of an asterisk in the nested enumerate list. I need to preserve this asterisk. I am looking for the ball, just in the first enumerate.
– JuanMuñoz
6 hours ago
1
@JuanMuñoz If you want an asterisk in the enumeration, usesetbeamertemplate{enumerate item}{$ast$}
. But why are you using anenumerate
environment, when you won't show numbers but asterisk?
– samcarter
5 hours ago
@JuanMuñoz And why are you asking for a ball in an enumerate list if you apparently want to change an itemize list? I'm confused!
– samcarter
5 hours ago
add a comment |
up vote
3
down vote
accepted
up vote
3
down vote
accepted
Don't use the enumitem
package with beamer, they are incompatible. Instead you can use the ball
template that beamer provides for you:
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
%usepackage{enumitem}
setbeamertemplate{itemize item}[ball]
setbeamertemplate{enumerate item}[ball]
begin{document}
begin{frame}{Conclusiones}
begin{itemize}
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
Don't use the enumitem
package with beamer, they are incompatible. Instead you can use the ball
template that beamer provides for you:
documentclass{beamer}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
%usepackage{enumitem}
setbeamertemplate{itemize item}[ball]
setbeamertemplate{enumerate item}[ball]
begin{document}
begin{frame}{Conclusiones}
begin{itemize}
item En un sistema de este tipo se describen tres escenarios.vspace{0.4cm}
begin{enumerate}
setlengthitemsep{1em}
item textbf{Primero:} Todas las condiciones iniciales del sistema tienden a un equilibrio a través de un estado transitorio que puede relacionarse con pequeños escenarios de crisis.
item textbf{Segundo:} Se predicen de manera consecutiva periodos críticos seguidos de periodos de riqueza.
item textbf{Tercero:} Todas las variables o algunas de ellas tienden a cero, lo que representa no sostenibilidad.
end{enumerate}
end{itemize}
end{frame}
end{document}
answered 6 hours ago
samcarter
82.9k794265
82.9k794265
You erased an important part of the code, this part consisted in the addition of an asterisk in the nested enumerate list. I need to preserve this asterisk. I am looking for the ball, just in the first enumerate.
– JuanMuñoz
6 hours ago
1
@JuanMuñoz If you want an asterisk in the enumeration, usesetbeamertemplate{enumerate item}{$ast$}
. But why are you using anenumerate
environment, when you won't show numbers but asterisk?
– samcarter
5 hours ago
@JuanMuñoz And why are you asking for a ball in an enumerate list if you apparently want to change an itemize list? I'm confused!
– samcarter
5 hours ago
add a comment |
You erased an important part of the code, this part consisted in the addition of an asterisk in the nested enumerate list. I need to preserve this asterisk. I am looking for the ball, just in the first enumerate.
– JuanMuñoz
6 hours ago
1
@JuanMuñoz If you want an asterisk in the enumeration, usesetbeamertemplate{enumerate item}{$ast$}
. But why are you using anenumerate
environment, when you won't show numbers but asterisk?
– samcarter
5 hours ago
@JuanMuñoz And why are you asking for a ball in an enumerate list if you apparently want to change an itemize list? I'm confused!
– samcarter
5 hours ago
You erased an important part of the code, this part consisted in the addition of an asterisk in the nested enumerate list. I need to preserve this asterisk. I am looking for the ball, just in the first enumerate.
– JuanMuñoz
6 hours ago
You erased an important part of the code, this part consisted in the addition of an asterisk in the nested enumerate list. I need to preserve this asterisk. I am looking for the ball, just in the first enumerate.
– JuanMuñoz
6 hours ago
1
1
@JuanMuñoz If you want an asterisk in the enumeration, use
setbeamertemplate{enumerate item}{$ast$}
. But why are you using an enumerate
environment, when you won't show numbers but asterisk?– samcarter
5 hours ago
@JuanMuñoz If you want an asterisk in the enumeration, use
setbeamertemplate{enumerate item}{$ast$}
. But why are you using an enumerate
environment, when you won't show numbers but asterisk?– samcarter
5 hours ago
@JuanMuñoz And why are you asking for a ball in an enumerate list if you apparently want to change an itemize list? I'm confused!
– samcarter
5 hours ago
@JuanMuñoz And why are you asking for a ball in an enumerate list if you apparently want to change an itemize list? I'm confused!
– samcarter
5 hours ago
add a comment |
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%2f462242%2fhow-to-use-ball-style-for-enumerate-list%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
While you wait for an answer to this question, can you go back to your previous ones and look if the answers solve your problems and accept them, if they do?
– samcarter
5 hours ago