Adding space at the beginning of a line
up vote
1
down vote
favorite
How can I add some blank characters at the beginning of a line? The point is to align text with the relevant text above, e. g. instead of:
(a) text
text
I would like to have:
(a) text
.....text
(Without the dots of course)
spacing
New contributor
add a comment |
up vote
1
down vote
favorite
How can I add some blank characters at the beginning of a line? The point is to align text with the relevant text above, e. g. instead of:
(a) text
text
I would like to have:
(a) text
.....text
(Without the dots of course)
spacing
New contributor
3
Search forenumerate
and check if that’s what you want .
– nidhin
Nov 18 at 15:48
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
How can I add some blank characters at the beginning of a line? The point is to align text with the relevant text above, e. g. instead of:
(a) text
text
I would like to have:
(a) text
.....text
(Without the dots of course)
spacing
New contributor
How can I add some blank characters at the beginning of a line? The point is to align text with the relevant text above, e. g. instead of:
(a) text
text
I would like to have:
(a) text
.....text
(Without the dots of course)
spacing
spacing
New contributor
New contributor
New contributor
asked Nov 18 at 15:46
Jakub Bober
61
61
New contributor
New contributor
3
Search forenumerate
and check if that’s what you want .
– nidhin
Nov 18 at 15:48
add a comment |
3
Search forenumerate
and check if that’s what you want .
– nidhin
Nov 18 at 15:48
3
3
Search for
enumerate
and check if that’s what you want .– nidhin
Nov 18 at 15:48
Search for
enumerate
and check if that’s what you want .– nidhin
Nov 18 at 15:48
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
An expandation of nidhin's comment:
documentclass[a4paper,12pt]{article}
usepackage{lipsum}
usepackage{enumerate}
begin{document}
lipsum[1]
begin{enumerate}[(a)]
item lipsum[2]
lipsum[3]
item lipsum[4]
%...
end{enumerate}
end{document}
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
An expandation of nidhin's comment:
documentclass[a4paper,12pt]{article}
usepackage{lipsum}
usepackage{enumerate}
begin{document}
lipsum[1]
begin{enumerate}[(a)]
item lipsum[2]
lipsum[3]
item lipsum[4]
%...
end{enumerate}
end{document}
add a comment |
up vote
1
down vote
An expandation of nidhin's comment:
documentclass[a4paper,12pt]{article}
usepackage{lipsum}
usepackage{enumerate}
begin{document}
lipsum[1]
begin{enumerate}[(a)]
item lipsum[2]
lipsum[3]
item lipsum[4]
%...
end{enumerate}
end{document}
add a comment |
up vote
1
down vote
up vote
1
down vote
An expandation of nidhin's comment:
documentclass[a4paper,12pt]{article}
usepackage{lipsum}
usepackage{enumerate}
begin{document}
lipsum[1]
begin{enumerate}[(a)]
item lipsum[2]
lipsum[3]
item lipsum[4]
%...
end{enumerate}
end{document}
An expandation of nidhin's comment:
documentclass[a4paper,12pt]{article}
usepackage{lipsum}
usepackage{enumerate}
begin{document}
lipsum[1]
begin{enumerate}[(a)]
item lipsum[2]
lipsum[3]
item lipsum[4]
%...
end{enumerate}
end{document}
answered Nov 18 at 16:03
Dũng Vũ
1,11920
1,11920
add a comment |
add a comment |
Jakub Bober is a new contributor. Be nice, and check out our Code of Conduct.
Jakub Bober is a new contributor. Be nice, and check out our Code of Conduct.
Jakub Bober is a new contributor. Be nice, and check out our Code of Conduct.
Jakub Bober is a new contributor. Be nice, and check out our Code of Conduct.
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%2f460610%2fadding-space-at-the-beginning-of-a-line%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
3
Search for
enumerate
and check if that’s what you want .– nidhin
Nov 18 at 15:48