Put a bullet before paragraph
up vote
1
down vote
favorite
I want put a bullet before paragraph ?, I want to put a bullet before the paragraph starts
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{Parrafo} this is a paragraph
this is not paragraph (
and should not have a bullet)
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
example:
paragraphs
add a comment |
up vote
1
down vote
favorite
I want put a bullet before paragraph ?, I want to put a bullet before the paragraph starts
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{Parrafo} this is a paragraph
this is not paragraph (
and should not have a bullet)
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
example:
paragraphs
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I want put a bullet before paragraph ?, I want to put a bullet before the paragraph starts
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{Parrafo} this is a paragraph
this is not paragraph (
and should not have a bullet)
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
example:
paragraphs
I want put a bullet before paragraph ?, I want to put a bullet before the paragraph starts
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{Parrafo} this is a paragraph
this is not paragraph (
and should not have a bullet)
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
example:
paragraphs
paragraphs
edited 13 hours ago
asked 13 hours ago
x-rw
28717
28717
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
I don't know if I understood your question correctly. In the text the bullets are defined with the command textbullet
while in mathematics mode you have to write $bullet$
paragraph{textbullet Parrafo}
Which gives us here:
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{textbullet Parrafo} hola como esta todo el mundo
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
good, but how can I put other types of bullet?, and I want to increase the spacing between the bullet and the text
– x-rw
13 hours ago
@x-rw You can space differently withquad
,qquad
or withhspace{5mm}
for example
– AndréC
13 hours ago
i want use this renewcommandparagraph[1]{$bullet$ textbf{#1}}
– x-rw
13 hours ago
@x-rw What's stopping you?
– AndréC
13 hours ago
in my command how do I put this hspace {5 mm}?
– x-rw
13 hours ago
|
show 1 more comment
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
I don't know if I understood your question correctly. In the text the bullets are defined with the command textbullet
while in mathematics mode you have to write $bullet$
paragraph{textbullet Parrafo}
Which gives us here:
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{textbullet Parrafo} hola como esta todo el mundo
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
good, but how can I put other types of bullet?, and I want to increase the spacing between the bullet and the text
– x-rw
13 hours ago
@x-rw You can space differently withquad
,qquad
or withhspace{5mm}
for example
– AndréC
13 hours ago
i want use this renewcommandparagraph[1]{$bullet$ textbf{#1}}
– x-rw
13 hours ago
@x-rw What's stopping you?
– AndréC
13 hours ago
in my command how do I put this hspace {5 mm}?
– x-rw
13 hours ago
|
show 1 more comment
up vote
1
down vote
I don't know if I understood your question correctly. In the text the bullets are defined with the command textbullet
while in mathematics mode you have to write $bullet$
paragraph{textbullet Parrafo}
Which gives us here:
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{textbullet Parrafo} hola como esta todo el mundo
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
good, but how can I put other types of bullet?, and I want to increase the spacing between the bullet and the text
– x-rw
13 hours ago
@x-rw You can space differently withquad
,qquad
or withhspace{5mm}
for example
– AndréC
13 hours ago
i want use this renewcommandparagraph[1]{$bullet$ textbf{#1}}
– x-rw
13 hours ago
@x-rw What's stopping you?
– AndréC
13 hours ago
in my command how do I put this hspace {5 mm}?
– x-rw
13 hours ago
|
show 1 more comment
up vote
1
down vote
up vote
1
down vote
I don't know if I understood your question correctly. In the text the bullets are defined with the command textbullet
while in mathematics mode you have to write $bullet$
paragraph{textbullet Parrafo}
Which gives us here:
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{textbullet Parrafo} hola como esta todo el mundo
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
I don't know if I understood your question correctly. In the text the bullets are defined with the command textbullet
while in mathematics mode you have to write $bullet$
paragraph{textbullet Parrafo}
Which gives us here:
documentclass{report}
usepackage{float}
begin{document}
chapter{ } %if you want a name write it as chapter{name}
init
section{seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
paragraph{textbullet Parrafo} hola como esta todo el mundo
section{ seccion}
begin{figure}[H]
centering
rule{1cm}{1cm}% placeholder for graphic
caption{A figure}
end{figure}
end{document}
answered 13 hours ago
AndréC
6,03711039
6,03711039
good, but how can I put other types of bullet?, and I want to increase the spacing between the bullet and the text
– x-rw
13 hours ago
@x-rw You can space differently withquad
,qquad
or withhspace{5mm}
for example
– AndréC
13 hours ago
i want use this renewcommandparagraph[1]{$bullet$ textbf{#1}}
– x-rw
13 hours ago
@x-rw What's stopping you?
– AndréC
13 hours ago
in my command how do I put this hspace {5 mm}?
– x-rw
13 hours ago
|
show 1 more comment
good, but how can I put other types of bullet?, and I want to increase the spacing between the bullet and the text
– x-rw
13 hours ago
@x-rw You can space differently withquad
,qquad
or withhspace{5mm}
for example
– AndréC
13 hours ago
i want use this renewcommandparagraph[1]{$bullet$ textbf{#1}}
– x-rw
13 hours ago
@x-rw What's stopping you?
– AndréC
13 hours ago
in my command how do I put this hspace {5 mm}?
– x-rw
13 hours ago
good, but how can I put other types of bullet?, and I want to increase the spacing between the bullet and the text
– x-rw
13 hours ago
good, but how can I put other types of bullet?, and I want to increase the spacing between the bullet and the text
– x-rw
13 hours ago
@x-rw You can space differently with
quad
, qquad
or with hspace{5mm}
for example– AndréC
13 hours ago
@x-rw You can space differently with
quad
, qquad
or with hspace{5mm}
for example– AndréC
13 hours ago
i want use this renewcommandparagraph[1]{$bullet$ textbf{#1}}
– x-rw
13 hours ago
i want use this renewcommandparagraph[1]{$bullet$ textbf{#1}}
– x-rw
13 hours ago
@x-rw What's stopping you?
– AndréC
13 hours ago
@x-rw What's stopping you?
– AndréC
13 hours ago
in my command how do I put this hspace {5 mm}?
– x-rw
13 hours ago
in my command how do I put this hspace {5 mm}?
– x-rw
13 hours ago
|
show 1 more 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%2f461145%2fput-a-bullet-before-paragraph%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