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
Nov 28 at 21:10
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 Nov 28 at 20:18
JuanMuñoz
4921414
4921414
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
Nov 28 at 21:10
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
Nov 28 at 21:10
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
Nov 28 at 21:10
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
Nov 28 at 21:10
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
Nov 28 at 21:03
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
Nov 28 at 21:05
@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
Nov 28 at 21:07
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
Nov 28 at 21:03
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
Nov 28 at 21:05
@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
Nov 28 at 21:07
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
Nov 28 at 21:03
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
Nov 28 at 21:05
@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
Nov 28 at 21:07
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 Nov 28 at 21:01
samcarter
1
1
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
Nov 28 at 21:03
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
Nov 28 at 21:05
@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
Nov 28 at 21:07
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
Nov 28 at 21:03
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
Nov 28 at 21:05
@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
Nov 28 at 21:07
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
Nov 28 at 21:03
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
Nov 28 at 21:03
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
Nov 28 at 21:05
@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
Nov 28 at 21:05
@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
Nov 28 at 21:07
@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
Nov 28 at 21:07
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%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
Nov 28 at 21:10