How can I space so that the following text can be vertically aligned
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
I have the following code:
newpage
addcontentslinetocchapterNotations
chapter*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
textitBBhspace1cmBollinger Band(s)
bigskip
textbfRoman lower case letters\
textitnhspace1cmNumber of days
Which yields the following output:
However I am trying to find an alternative to hspace
so that the output after the notation the description of notation should be vertically aligned such as:
Question: Is there any alternative approach to vertical align text after horizontal spacing?
formatting
add a comment |Â
up vote
3
down vote
favorite
I have the following code:
newpage
addcontentslinetocchapterNotations
chapter*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
textitBBhspace1cmBollinger Band(s)
bigskip
textbfRoman lower case letters\
textitnhspace1cmNumber of days
Which yields the following output:
However I am trying to find an alternative to hspace
so that the output after the notation the description of notation should be vertically aligned such as:
Question: Is there any alternative approach to vertical align text after horizontal spacing?
formatting
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I have the following code:
newpage
addcontentslinetocchapterNotations
chapter*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
textitBBhspace1cmBollinger Band(s)
bigskip
textbfRoman lower case letters\
textitnhspace1cmNumber of days
Which yields the following output:
However I am trying to find an alternative to hspace
so that the output after the notation the description of notation should be vertically aligned such as:
Question: Is there any alternative approach to vertical align text after horizontal spacing?
formatting
I have the following code:
newpage
addcontentslinetocchapterNotations
chapter*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
textitBBhspace1cmBollinger Band(s)
bigskip
textbfRoman lower case letters\
textitnhspace1cmNumber of days
Which yields the following output:
However I am trying to find an alternative to hspace
so that the output after the notation the description of notation should be vertically aligned such as:
Question: Is there any alternative approach to vertical align text after horizontal spacing?
formatting
edited Aug 18 at 6:45
asked Aug 18 at 6:36
3kstc
20711
20711
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
6
down vote
accepted
I suggest using the glossaries
package which is meant for creating such acronym lists.
A quick solution for your specific problem would be defining a new command that puts each notation symbol into a box of fixed width:
documentclassarticle
newcommandnotation[2]makebox[1cm][l]textit#1#2
begindocument
parindent=0pt
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
notationBBBollinger Band(s)
bigskip
textbfRoman lower case letters\
notationnNumber of days
enddocument
thank you, I've amended anewline
command into your functionnewcommandnotation[2]newlinemakebox[1cm][l]textit#1#2
â 3kstc
Aug 18 at 8:51
It should be\*
after the title, but I'd usesubsubsection*
.
â egreg
Aug 18 at 9:21
@egreg What is the difference\*
and\
?
â 3kstc
Aug 18 at 10:59
1
@3kstc The former inhibits a page break.
â egreg
Aug 18 at 12:23
add a comment |Â
up vote
2
down vote
yaou may consider to write your lists of used notations as tables. if list are short, than is appropriate use of the tabularx
package, otherwise is handy ltablex
:
documentclassarticle
usepackageltablex
begindocument
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.
subsection*Roman upper case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
M & number of days \
N & some very very very very very very very very very very very very very very very very long description what is this \
OO & number of days \
PPPP & number of days \
QQ & number of days \
RRR & number of days \
S & number of days
endtabularx
endgroup
subsection*Roman lower case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
n & number of days \
n & some very very very very very very very very very very very very very very very very long description what is this \
n & number of days \
n & number of days \
n & number of days \
n & number of days \
n & number of days
endtabularx
endgroup
enddocument
(red lines indicate text border)
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
accepted
I suggest using the glossaries
package which is meant for creating such acronym lists.
A quick solution for your specific problem would be defining a new command that puts each notation symbol into a box of fixed width:
documentclassarticle
newcommandnotation[2]makebox[1cm][l]textit#1#2
begindocument
parindent=0pt
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
notationBBBollinger Band(s)
bigskip
textbfRoman lower case letters\
notationnNumber of days
enddocument
thank you, I've amended anewline
command into your functionnewcommandnotation[2]newlinemakebox[1cm][l]textit#1#2
â 3kstc
Aug 18 at 8:51
It should be\*
after the title, but I'd usesubsubsection*
.
â egreg
Aug 18 at 9:21
@egreg What is the difference\*
and\
?
â 3kstc
Aug 18 at 10:59
1
@3kstc The former inhibits a page break.
â egreg
Aug 18 at 12:23
add a comment |Â
up vote
6
down vote
accepted
I suggest using the glossaries
package which is meant for creating such acronym lists.
A quick solution for your specific problem would be defining a new command that puts each notation symbol into a box of fixed width:
documentclassarticle
newcommandnotation[2]makebox[1cm][l]textit#1#2
begindocument
parindent=0pt
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
notationBBBollinger Band(s)
bigskip
textbfRoman lower case letters\
notationnNumber of days
enddocument
thank you, I've amended anewline
command into your functionnewcommandnotation[2]newlinemakebox[1cm][l]textit#1#2
â 3kstc
Aug 18 at 8:51
It should be\*
after the title, but I'd usesubsubsection*
.
â egreg
Aug 18 at 9:21
@egreg What is the difference\*
and\
?
â 3kstc
Aug 18 at 10:59
1
@3kstc The former inhibits a page break.
â egreg
Aug 18 at 12:23
add a comment |Â
up vote
6
down vote
accepted
up vote
6
down vote
accepted
I suggest using the glossaries
package which is meant for creating such acronym lists.
A quick solution for your specific problem would be defining a new command that puts each notation symbol into a box of fixed width:
documentclassarticle
newcommandnotation[2]makebox[1cm][l]textit#1#2
begindocument
parindent=0pt
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
notationBBBollinger Band(s)
bigskip
textbfRoman lower case letters\
notationnNumber of days
enddocument
I suggest using the glossaries
package which is meant for creating such acronym lists.
A quick solution for your specific problem would be defining a new command that puts each notation symbol into a box of fixed width:
documentclassarticle
newcommandnotation[2]makebox[1cm][l]textit#1#2
begindocument
parindent=0pt
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.bigskip
textbfRoman upper case letters\
notationBBBollinger Band(s)
bigskip
textbfRoman lower case letters\
notationnNumber of days
enddocument
answered Aug 18 at 7:54
siracusa
3,2581924
3,2581924
thank you, I've amended anewline
command into your functionnewcommandnotation[2]newlinemakebox[1cm][l]textit#1#2
â 3kstc
Aug 18 at 8:51
It should be\*
after the title, but I'd usesubsubsection*
.
â egreg
Aug 18 at 9:21
@egreg What is the difference\*
and\
?
â 3kstc
Aug 18 at 10:59
1
@3kstc The former inhibits a page break.
â egreg
Aug 18 at 12:23
add a comment |Â
thank you, I've amended anewline
command into your functionnewcommandnotation[2]newlinemakebox[1cm][l]textit#1#2
â 3kstc
Aug 18 at 8:51
It should be\*
after the title, but I'd usesubsubsection*
.
â egreg
Aug 18 at 9:21
@egreg What is the difference\*
and\
?
â 3kstc
Aug 18 at 10:59
1
@3kstc The former inhibits a page break.
â egreg
Aug 18 at 12:23
thank you, I've amended a
newline
command into your function newcommandnotation[2]newlinemakebox[1cm][l]textit#1#2
â 3kstc
Aug 18 at 8:51
thank you, I've amended a
newline
command into your function newcommandnotation[2]newlinemakebox[1cm][l]textit#1#2
â 3kstc
Aug 18 at 8:51
It should be
\*
after the title, but I'd use subsubsection*
.â egreg
Aug 18 at 9:21
It should be
\*
after the title, but I'd use subsubsection*
.â egreg
Aug 18 at 9:21
@egreg What is the difference
\*
and \
?â 3kstc
Aug 18 at 10:59
@egreg What is the difference
\*
and \
?â 3kstc
Aug 18 at 10:59
1
1
@3kstc The former inhibits a page break.
â egreg
Aug 18 at 12:23
@3kstc The former inhibits a page break.
â egreg
Aug 18 at 12:23
add a comment |Â
up vote
2
down vote
yaou may consider to write your lists of used notations as tables. if list are short, than is appropriate use of the tabularx
package, otherwise is handy ltablex
:
documentclassarticle
usepackageltablex
begindocument
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.
subsection*Roman upper case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
M & number of days \
N & some very very very very very very very very very very very very very very very very long description what is this \
OO & number of days \
PPPP & number of days \
QQ & number of days \
RRR & number of days \
S & number of days
endtabularx
endgroup
subsection*Roman lower case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
n & number of days \
n & some very very very very very very very very very very very very very very very very long description what is this \
n & number of days \
n & number of days \
n & number of days \
n & number of days \
n & number of days
endtabularx
endgroup
enddocument
(red lines indicate text border)
add a comment |Â
up vote
2
down vote
yaou may consider to write your lists of used notations as tables. if list are short, than is appropriate use of the tabularx
package, otherwise is handy ltablex
:
documentclassarticle
usepackageltablex
begindocument
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.
subsection*Roman upper case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
M & number of days \
N & some very very very very very very very very very very very very very very very very long description what is this \
OO & number of days \
PPPP & number of days \
QQ & number of days \
RRR & number of days \
S & number of days
endtabularx
endgroup
subsection*Roman lower case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
n & number of days \
n & some very very very very very very very very very very very very very very very very long description what is this \
n & number of days \
n & number of days \
n & number of days \
n & number of days \
n & number of days
endtabularx
endgroup
enddocument
(red lines indicate text border)
add a comment |Â
up vote
2
down vote
up vote
2
down vote
yaou may consider to write your lists of used notations as tables. if list are short, than is appropriate use of the tabularx
package, otherwise is handy ltablex
:
documentclassarticle
usepackageltablex
begindocument
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.
subsection*Roman upper case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
M & number of days \
N & some very very very very very very very very very very very very very very very very long description what is this \
OO & number of days \
PPPP & number of days \
QQ & number of days \
RRR & number of days \
S & number of days
endtabularx
endgroup
subsection*Roman lower case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
n & number of days \
n & some very very very very very very very very very very very very very very very very long description what is this \
n & number of days \
n & number of days \
n & number of days \
n & number of days \
n & number of days
endtabularx
endgroup
enddocument
(red lines indicate text border)
yaou may consider to write your lists of used notations as tables. if list are short, than is appropriate use of the tabularx
package, otherwise is handy ltablex
:
documentclassarticle
usepackageltablex
begindocument
section*Notations
Note: Some of these notations appear as a subscript in the thesis work.
subsection*Roman upper case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
M & number of days \
N & some very very very very very very very very very very very very very very very very long description what is this \
OO & number of days \
PPPP & number of days \
QQ & number of days \
RRR & number of days \
S & number of days
endtabularx
endgroup
subsection*Roman lower case letters
begingroup
centering
begintabularxlinewidth@ >hsize=0.1hsizeraggedrightX
>hsize=0.9hsize X
@
n & number of days \
n & some very very very very very very very very very very very very very very very very long description what is this \
n & number of days \
n & number of days \
n & number of days \
n & number of days \
n & number of days
endtabularx
endgroup
enddocument
(red lines indicate text border)
answered Aug 18 at 8:59
Zarko
111k861148
111k861148
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f446525%2fhow-can-i-space-so-that-the-following-text-can-be-vertically-aligned%23new-answer', 'question_page');
);
Post as a guest
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
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
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