Minipage: The words at the end of each line touch the border of the minipage and not over space
As I avoid the space at the end of the lines. I want the last word of each line to touch the edge of the minipage but not to exceed it. Each line has to stay as it is, one should not remove or include words, or change words between two lines. I can not use spaceskip to rearrange each line individually.
The first word of each line should touch the right edge of the minipage just as it is in the image below. The distribution of the words should be agreeable in the end.
Lines that have only one word are not a problem as long as the word remains in the text.
I want to know a global solution, such as a style, or package, or command, etc.
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
spaceskip=1.78fontdimen2font plus 1.2fontdimen3font minus 1.2fontdimen4font
Deep down, I know I do \
great work! I literally \
study every single day, \
and I work on huge projects at work. I've been in \
the field for over 15 years. I work with \
and even challenge some of the \
best developers.
end{spacing}
end{minipage}
}
end{document}
Hi @leandriis, here a code using makebox[linewidth][s]:
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
spaceskip=1.78fontdimen2font plus 1.2fontdimen3font minus 1.2fontdimen4font
makebox[linewidth][s]{Deep down, I know I do} \
makebox[linewidth][s]{great work! I literally} \
makebox[linewidth][s]{study every single day,} \
makebox[linewidth][s]{and I work on huge projects at work. I've been in} \
makebox[linewidth][s]{the field for over 15 years. I work with} \
makebox[linewidth][s]{and even challenge some of the} \
makebox[linewidth][s]{best developers.}
end{spacing}
end{minipage}
}
end{document}
and the result
minipage
add a comment |
As I avoid the space at the end of the lines. I want the last word of each line to touch the edge of the minipage but not to exceed it. Each line has to stay as it is, one should not remove or include words, or change words between two lines. I can not use spaceskip to rearrange each line individually.
The first word of each line should touch the right edge of the minipage just as it is in the image below. The distribution of the words should be agreeable in the end.
Lines that have only one word are not a problem as long as the word remains in the text.
I want to know a global solution, such as a style, or package, or command, etc.
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
spaceskip=1.78fontdimen2font plus 1.2fontdimen3font minus 1.2fontdimen4font
Deep down, I know I do \
great work! I literally \
study every single day, \
and I work on huge projects at work. I've been in \
the field for over 15 years. I work with \
and even challenge some of the \
best developers.
end{spacing}
end{minipage}
}
end{document}
Hi @leandriis, here a code using makebox[linewidth][s]:
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
spaceskip=1.78fontdimen2font plus 1.2fontdimen3font minus 1.2fontdimen4font
makebox[linewidth][s]{Deep down, I know I do} \
makebox[linewidth][s]{great work! I literally} \
makebox[linewidth][s]{study every single day,} \
makebox[linewidth][s]{and I work on huge projects at work. I've been in} \
makebox[linewidth][s]{the field for over 15 years. I work with} \
makebox[linewidth][s]{and even challenge some of the} \
makebox[linewidth][s]{best developers.}
end{spacing}
end{minipage}
}
end{document}
and the result
minipage
1
Possibly related? fully stretch text horizontally on page
– leandriis
7 hours ago
Sorry, but after reading your question several times, I can't understand what the request is.
– egreg
7 hours ago
1
are you just saying that you want forced line breaks but stretching the words not leaving the line short? In which case you wantlinebreak
not\
but your question is very unclear
– David Carlisle
7 hours ago
Hi @leandriis, use makebox [ linewidth] [s] did not work as shown in the second image of my question. One of the lines crossed the border.
– Diego Bnei Noah
6 hours ago
add a comment |
As I avoid the space at the end of the lines. I want the last word of each line to touch the edge of the minipage but not to exceed it. Each line has to stay as it is, one should not remove or include words, or change words between two lines. I can not use spaceskip to rearrange each line individually.
The first word of each line should touch the right edge of the minipage just as it is in the image below. The distribution of the words should be agreeable in the end.
Lines that have only one word are not a problem as long as the word remains in the text.
I want to know a global solution, such as a style, or package, or command, etc.
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
spaceskip=1.78fontdimen2font plus 1.2fontdimen3font minus 1.2fontdimen4font
Deep down, I know I do \
great work! I literally \
study every single day, \
and I work on huge projects at work. I've been in \
the field for over 15 years. I work with \
and even challenge some of the \
best developers.
end{spacing}
end{minipage}
}
end{document}
Hi @leandriis, here a code using makebox[linewidth][s]:
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
spaceskip=1.78fontdimen2font plus 1.2fontdimen3font minus 1.2fontdimen4font
makebox[linewidth][s]{Deep down, I know I do} \
makebox[linewidth][s]{great work! I literally} \
makebox[linewidth][s]{study every single day,} \
makebox[linewidth][s]{and I work on huge projects at work. I've been in} \
makebox[linewidth][s]{the field for over 15 years. I work with} \
makebox[linewidth][s]{and even challenge some of the} \
makebox[linewidth][s]{best developers.}
end{spacing}
end{minipage}
}
end{document}
and the result
minipage
As I avoid the space at the end of the lines. I want the last word of each line to touch the edge of the minipage but not to exceed it. Each line has to stay as it is, one should not remove or include words, or change words between two lines. I can not use spaceskip to rearrange each line individually.
The first word of each line should touch the right edge of the minipage just as it is in the image below. The distribution of the words should be agreeable in the end.
Lines that have only one word are not a problem as long as the word remains in the text.
I want to know a global solution, such as a style, or package, or command, etc.
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
spaceskip=1.78fontdimen2font plus 1.2fontdimen3font minus 1.2fontdimen4font
Deep down, I know I do \
great work! I literally \
study every single day, \
and I work on huge projects at work. I've been in \
the field for over 15 years. I work with \
and even challenge some of the \
best developers.
end{spacing}
end{minipage}
}
end{document}
Hi @leandriis, here a code using makebox[linewidth][s]:
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
spaceskip=1.78fontdimen2font plus 1.2fontdimen3font minus 1.2fontdimen4font
makebox[linewidth][s]{Deep down, I know I do} \
makebox[linewidth][s]{great work! I literally} \
makebox[linewidth][s]{study every single day,} \
makebox[linewidth][s]{and I work on huge projects at work. I've been in} \
makebox[linewidth][s]{the field for over 15 years. I work with} \
makebox[linewidth][s]{and even challenge some of the} \
makebox[linewidth][s]{best developers.}
end{spacing}
end{minipage}
}
end{document}
and the result
minipage
minipage
edited 6 hours ago
Diego Bnei Noah
asked 7 hours ago
Diego Bnei NoahDiego Bnei Noah
327
327
1
Possibly related? fully stretch text horizontally on page
– leandriis
7 hours ago
Sorry, but after reading your question several times, I can't understand what the request is.
– egreg
7 hours ago
1
are you just saying that you want forced line breaks but stretching the words not leaving the line short? In which case you wantlinebreak
not\
but your question is very unclear
– David Carlisle
7 hours ago
Hi @leandriis, use makebox [ linewidth] [s] did not work as shown in the second image of my question. One of the lines crossed the border.
– Diego Bnei Noah
6 hours ago
add a comment |
1
Possibly related? fully stretch text horizontally on page
– leandriis
7 hours ago
Sorry, but after reading your question several times, I can't understand what the request is.
– egreg
7 hours ago
1
are you just saying that you want forced line breaks but stretching the words not leaving the line short? In which case you wantlinebreak
not\
but your question is very unclear
– David Carlisle
7 hours ago
Hi @leandriis, use makebox [ linewidth] [s] did not work as shown in the second image of my question. One of the lines crossed the border.
– Diego Bnei Noah
6 hours ago
1
1
Possibly related? fully stretch text horizontally on page
– leandriis
7 hours ago
Possibly related? fully stretch text horizontally on page
– leandriis
7 hours ago
Sorry, but after reading your question several times, I can't understand what the request is.
– egreg
7 hours ago
Sorry, but after reading your question several times, I can't understand what the request is.
– egreg
7 hours ago
1
1
are you just saying that you want forced line breaks but stretching the words not leaving the line short? In which case you want
linebreak
not \
but your question is very unclear– David Carlisle
7 hours ago
are you just saying that you want forced line breaks but stretching the words not leaving the line short? In which case you want
linebreak
not \
but your question is very unclear– David Carlisle
7 hours ago
Hi @leandriis, use makebox [ linewidth] [s] did not work as shown in the second image of my question. One of the lines crossed the border.
– Diego Bnei Noah
6 hours ago
Hi @leandriis, use makebox [ linewidth] [s] did not work as shown in the second image of my question. One of the lines crossed the border.
– Diego Bnei Noah
6 hours ago
add a comment |
1 Answer
1
active
oldest
votes
I am not sure, but I think you are asking for
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
emergencystretchlinewidthparfillskip0pt
Deep down, I know I dolinebreak
great work! I literallylinebreak
study every single day,linebreak
and I work on huge projects at work. I've been inlinebreak
the field for over 15 years. I work withlinebreak
and even challenge some of thelinebreak
best developers.
end{spacing}
end{minipage}
}
end{document}
1
This is using forced breaks as you seem to want and forces every line to be full width, but the spacing of course is not agreeable, but I could not understand your question if it was not asking for this.
– David Carlisle
7 hours ago
Hi @DavidCarlisle, Although the result has a very large spacing between words, this does not sound unpleasant, but depends on the width of the minipage. Your response was great. Thank you! Thank you all!
– Diego Bnei Noah
6 hours ago
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
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%2f476506%2fminipage-the-words-at-the-end-of-each-line-touch-the-border-of-the-minipage-and%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
I am not sure, but I think you are asking for
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
emergencystretchlinewidthparfillskip0pt
Deep down, I know I dolinebreak
great work! I literallylinebreak
study every single day,linebreak
and I work on huge projects at work. I've been inlinebreak
the field for over 15 years. I work withlinebreak
and even challenge some of thelinebreak
best developers.
end{spacing}
end{minipage}
}
end{document}
1
This is using forced breaks as you seem to want and forces every line to be full width, but the spacing of course is not agreeable, but I could not understand your question if it was not asking for this.
– David Carlisle
7 hours ago
Hi @DavidCarlisle, Although the result has a very large spacing between words, this does not sound unpleasant, but depends on the width of the minipage. Your response was great. Thank you! Thank you all!
– Diego Bnei Noah
6 hours ago
add a comment |
I am not sure, but I think you are asking for
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
emergencystretchlinewidthparfillskip0pt
Deep down, I know I dolinebreak
great work! I literallylinebreak
study every single day,linebreak
and I work on huge projects at work. I've been inlinebreak
the field for over 15 years. I work withlinebreak
and even challenge some of thelinebreak
best developers.
end{spacing}
end{minipage}
}
end{document}
1
This is using forced breaks as you seem to want and forces every line to be full width, but the spacing of course is not agreeable, but I could not understand your question if it was not asking for this.
– David Carlisle
7 hours ago
Hi @DavidCarlisle, Although the result has a very large spacing between words, this does not sound unpleasant, but depends on the width of the minipage. Your response was great. Thank you! Thank you all!
– Diego Bnei Noah
6 hours ago
add a comment |
I am not sure, but I think you are asking for
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
emergencystretchlinewidthparfillskip0pt
Deep down, I know I dolinebreak
great work! I literallylinebreak
study every single day,linebreak
and I work on huge projects at work. I've been inlinebreak
the field for over 15 years. I work withlinebreak
and even challenge some of thelinebreak
best developers.
end{spacing}
end{minipage}
}
end{document}
I am not sure, but I think you are asking for
documentclass{article}
usepackage{fancybox,anyfontsize,geometry,setspace}
thispagestyle{empty}
paperwidth=15.0in
paperheight=13.0in
addtolength{textwidth}{12.55in}
addtolength{textheight}{6.90in}
begin{document}
fbox{
begin{minipage}{0.45textwidth}
begin{spacing}{9}
fontsize{40}{6}selectfont
emergencystretchlinewidthparfillskip0pt
Deep down, I know I dolinebreak
great work! I literallylinebreak
study every single day,linebreak
and I work on huge projects at work. I've been inlinebreak
the field for over 15 years. I work withlinebreak
and even challenge some of thelinebreak
best developers.
end{spacing}
end{minipage}
}
end{document}
answered 7 hours ago
David CarlisleDavid Carlisle
492k4111371885
492k4111371885
1
This is using forced breaks as you seem to want and forces every line to be full width, but the spacing of course is not agreeable, but I could not understand your question if it was not asking for this.
– David Carlisle
7 hours ago
Hi @DavidCarlisle, Although the result has a very large spacing between words, this does not sound unpleasant, but depends on the width of the minipage. Your response was great. Thank you! Thank you all!
– Diego Bnei Noah
6 hours ago
add a comment |
1
This is using forced breaks as you seem to want and forces every line to be full width, but the spacing of course is not agreeable, but I could not understand your question if it was not asking for this.
– David Carlisle
7 hours ago
Hi @DavidCarlisle, Although the result has a very large spacing between words, this does not sound unpleasant, but depends on the width of the minipage. Your response was great. Thank you! Thank you all!
– Diego Bnei Noah
6 hours ago
1
1
This is using forced breaks as you seem to want and forces every line to be full width, but the spacing of course is not agreeable, but I could not understand your question if it was not asking for this.
– David Carlisle
7 hours ago
This is using forced breaks as you seem to want and forces every line to be full width, but the spacing of course is not agreeable, but I could not understand your question if it was not asking for this.
– David Carlisle
7 hours ago
Hi @DavidCarlisle, Although the result has a very large spacing between words, this does not sound unpleasant, but depends on the width of the minipage. Your response was great. Thank you! Thank you all!
– Diego Bnei Noah
6 hours ago
Hi @DavidCarlisle, Although the result has a very large spacing between words, this does not sound unpleasant, but depends on the width of the minipage. Your response was great. Thank you! Thank you all!
– Diego Bnei Noah
6 hours ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f476506%2fminipage-the-words-at-the-end-of-each-line-touch-the-border-of-the-minipage-and%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
1
Possibly related? fully stretch text horizontally on page
– leandriis
7 hours ago
Sorry, but after reading your question several times, I can't understand what the request is.
– egreg
7 hours ago
1
are you just saying that you want forced line breaks but stretching the words not leaving the line short? In which case you want
linebreak
not\
but your question is very unclear– David Carlisle
7 hours ago
Hi @leandriis, use makebox [ linewidth] [s] did not work as shown in the second image of my question. One of the lines crossed the border.
– Diego Bnei Noah
6 hours ago