White horizontal space
up vote
0
down vote
favorite
I know the possible ways to add white space between two texts, as explained and answered here.
What I'm struggling to set is a white space before one word, nothing that I tried worked except this:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
noindentfcolorbox{black}{white}{
parbox{textwidth}{
Usage: export.py \
begin{tabular}{lp{5cm}}
& Save the ...
end{tabular}}}
end{document}
My question is: can I get this output from the line in a different way or this is the only way to have a white space before a word? 
EDIT: update the code; the everything is inside a parbox and I cannot use quad, qquad or hspace.
EDIT2: I need to create a box with inside the option for a script in a similar way they are presented in the terminal:

spacing
add a comment |
up vote
0
down vote
favorite
I know the possible ways to add white space between two texts, as explained and answered here.
What I'm struggling to set is a white space before one word, nothing that I tried worked except this:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
noindentfcolorbox{black}{white}{
parbox{textwidth}{
Usage: export.py \
begin{tabular}{lp{5cm}}
& Save the ...
end{tabular}}}
end{document}
My question is: can I get this output from the line in a different way or this is the only way to have a white space before a word? 
EDIT: update the code; the everything is inside a parbox and I cannot use quad, qquad or hspace.
EDIT2: I need to create a box with inside the option for a script in a similar way they are presented in the terminal:

spacing
You can add some horizontal predefined space withquadfor example. Or more general,hspace{1cm}(use with caution).
– Sigur
12 hours ago
Explain better what you wish. There could be a better way to type it. For example, moveUsage:in the first cell of the table andexport.pyto the second cell, 1st row.
– Sigur
12 hours ago
isn't this a description list, something likebegin{description} item[export.py] Save the ...then with suitable style for the list item labels being applied?
– David Carlisle
12 hours ago
I update the question.
– toom501
12 hours ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I know the possible ways to add white space between two texts, as explained and answered here.
What I'm struggling to set is a white space before one word, nothing that I tried worked except this:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
noindentfcolorbox{black}{white}{
parbox{textwidth}{
Usage: export.py \
begin{tabular}{lp{5cm}}
& Save the ...
end{tabular}}}
end{document}
My question is: can I get this output from the line in a different way or this is the only way to have a white space before a word? 
EDIT: update the code; the everything is inside a parbox and I cannot use quad, qquad or hspace.
EDIT2: I need to create a box with inside the option for a script in a similar way they are presented in the terminal:

spacing
I know the possible ways to add white space between two texts, as explained and answered here.
What I'm struggling to set is a white space before one word, nothing that I tried worked except this:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
noindentfcolorbox{black}{white}{
parbox{textwidth}{
Usage: export.py \
begin{tabular}{lp{5cm}}
& Save the ...
end{tabular}}}
end{document}
My question is: can I get this output from the line in a different way or this is the only way to have a white space before a word? 
EDIT: update the code; the everything is inside a parbox and I cannot use quad, qquad or hspace.
EDIT2: I need to create a box with inside the option for a script in a similar way they are presented in the terminal:

spacing
spacing
edited 11 hours ago
Raaja
1,9662523
1,9662523
asked 12 hours ago
toom501
515
515
You can add some horizontal predefined space withquadfor example. Or more general,hspace{1cm}(use with caution).
– Sigur
12 hours ago
Explain better what you wish. There could be a better way to type it. For example, moveUsage:in the first cell of the table andexport.pyto the second cell, 1st row.
– Sigur
12 hours ago
isn't this a description list, something likebegin{description} item[export.py] Save the ...then with suitable style for the list item labels being applied?
– David Carlisle
12 hours ago
I update the question.
– toom501
12 hours ago
add a comment |
You can add some horizontal predefined space withquadfor example. Or more general,hspace{1cm}(use with caution).
– Sigur
12 hours ago
Explain better what you wish. There could be a better way to type it. For example, moveUsage:in the first cell of the table andexport.pyto the second cell, 1st row.
– Sigur
12 hours ago
isn't this a description list, something likebegin{description} item[export.py] Save the ...then with suitable style for the list item labels being applied?
– David Carlisle
12 hours ago
I update the question.
– toom501
12 hours ago
You can add some horizontal predefined space with
quad for example. Or more general, hspace{1cm} (use with caution).– Sigur
12 hours ago
You can add some horizontal predefined space with
quad for example. Or more general, hspace{1cm} (use with caution).– Sigur
12 hours ago
Explain better what you wish. There could be a better way to type it. For example, move
Usage: in the first cell of the table and export.py to the second cell, 1st row.– Sigur
12 hours ago
Explain better what you wish. There could be a better way to type it. For example, move
Usage: in the first cell of the table and export.py to the second cell, 1st row.– Sigur
12 hours ago
isn't this a description list, something like
begin{description} item[export.py] Save the ... then with suitable style for the list item labels being applied?– David Carlisle
12 hours ago
isn't this a description list, something like
begin{description} item[export.py] Save the ... then with suitable style for the list item labels being applied?– David Carlisle
12 hours ago
I update the question.
– toom501
12 hours ago
I update the question.
– toom501
12 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
Not a complete answer, but, just a starting point for you:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
color{white}
noindentfcolorbox{black}{black}{
parbox{textwidth}{
begin{tabular}{lp{5cm}}
Usage:& export.py \
& Save the ...\
Options:&\
multicolumn{1}{r}{-h,}&-{}-help \
multicolumn{1}{r}{-p,}&-{}-please continue\
multicolumn{1}{r}{-f,}&-{}-from here\
end{tabular}}}
end{document}
which will give you:

Thank you, looks good to me. :)
– toom501
11 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
0
down vote
accepted
Not a complete answer, but, just a starting point for you:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
color{white}
noindentfcolorbox{black}{black}{
parbox{textwidth}{
begin{tabular}{lp{5cm}}
Usage:& export.py \
& Save the ...\
Options:&\
multicolumn{1}{r}{-h,}&-{}-help \
multicolumn{1}{r}{-p,}&-{}-please continue\
multicolumn{1}{r}{-f,}&-{}-from here\
end{tabular}}}
end{document}
which will give you:

Thank you, looks good to me. :)
– toom501
11 hours ago
add a comment |
up vote
0
down vote
accepted
Not a complete answer, but, just a starting point for you:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
color{white}
noindentfcolorbox{black}{black}{
parbox{textwidth}{
begin{tabular}{lp{5cm}}
Usage:& export.py \
& Save the ...\
Options:&\
multicolumn{1}{r}{-h,}&-{}-help \
multicolumn{1}{r}{-p,}&-{}-please continue\
multicolumn{1}{r}{-f,}&-{}-from here\
end{tabular}}}
end{document}
which will give you:

Thank you, looks good to me. :)
– toom501
11 hours ago
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
Not a complete answer, but, just a starting point for you:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
color{white}
noindentfcolorbox{black}{black}{
parbox{textwidth}{
begin{tabular}{lp{5cm}}
Usage:& export.py \
& Save the ...\
Options:&\
multicolumn{1}{r}{-h,}&-{}-help \
multicolumn{1}{r}{-p,}&-{}-please continue\
multicolumn{1}{r}{-f,}&-{}-from here\
end{tabular}}}
end{document}
which will give you:

Not a complete answer, but, just a starting point for you:
documentclass[11pt]{article}
usepackage{tcolorbox}
begin{document}
color{white}
noindentfcolorbox{black}{black}{
parbox{textwidth}{
begin{tabular}{lp{5cm}}
Usage:& export.py \
& Save the ...\
Options:&\
multicolumn{1}{r}{-h,}&-{}-help \
multicolumn{1}{r}{-p,}&-{}-please continue\
multicolumn{1}{r}{-f,}&-{}-from here\
end{tabular}}}
end{document}
which will give you:

answered 11 hours ago
Raaja
1,9662523
1,9662523
Thank you, looks good to me. :)
– toom501
11 hours ago
add a comment |
Thank you, looks good to me. :)
– toom501
11 hours ago
Thank you, looks good to me. :)
– toom501
11 hours ago
Thank you, looks good to me. :)
– toom501
11 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%2f461818%2fwhite-horizontal-space%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
You can add some horizontal predefined space with
quadfor example. Or more general,hspace{1cm}(use with caution).– Sigur
12 hours ago
Explain better what you wish. There could be a better way to type it. For example, move
Usage:in the first cell of the table andexport.pyto the second cell, 1st row.– Sigur
12 hours ago
isn't this a description list, something like
begin{description} item[export.py] Save the ...then with suitable style for the list item labels being applied?– David Carlisle
12 hours ago
I update the question.
– toom501
12 hours ago