How to use ball style for enumerate list-











up vote
1
down vote

favorite
1












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}









share|improve this question






















  • 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















up vote
1
down vote

favorite
1












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}









share|improve this question






















  • 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













up vote
1
down vote

favorite
1









up vote
1
down vote

favorite
1






1





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}









share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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










1 Answer
1






active

oldest

votes

















up vote
3
down vote



accepted










enter image description here



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}


enter image description here






share|improve this answer





















  • 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, 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











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















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

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
3
down vote



accepted










enter image description here



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}


enter image description here






share|improve this answer





















  • 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, 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















up vote
3
down vote



accepted










enter image description here



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}


enter image description here






share|improve this answer





















  • 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, 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













up vote
3
down vote



accepted







up vote
3
down vote



accepted






enter image description here



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}


enter image description here






share|improve this answer












enter image description here



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}


enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










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, 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


















  • 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, 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
















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


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














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





















































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







Popular posts from this blog

サソリ

広島県道265号伴広島線

Accessing regular linux commands in Huawei's Dopra Linux