Overfull hbox in a section title
up vote
0
down vote
favorite
Every now and then I get this error and I don't know how to solve it. From what I understand reading other posts, it's because LaTeX doesn't know how to hyphenate some sentences and finds no good way to break the line.
In my case I have the following line:
section{Estimating the odds ratio in a case-control study}
And the following error:
Overfull hbox (7.52351pt too wide) in paragraph at lines 64--64
I've tried using -
to no avail. Interestingly enough if used as an item instead of a section title there's no error.
Thanks
Edit:
The log error:
Overfull hbox (7.52351pt too wide) in paragraph at lines 64--64
T1/cmr/bx/n/14.4 Estimating the odds ra-tio in a case-control study
line-breaking hyphenation knitr
add a comment |
up vote
0
down vote
favorite
Every now and then I get this error and I don't know how to solve it. From what I understand reading other posts, it's because LaTeX doesn't know how to hyphenate some sentences and finds no good way to break the line.
In my case I have the following line:
section{Estimating the odds ratio in a case-control study}
And the following error:
Overfull hbox (7.52351pt too wide) in paragraph at lines 64--64
I've tried using -
to no avail. Interestingly enough if used as an item instead of a section title there's no error.
Thanks
Edit:
The log error:
Overfull hbox (7.52351pt too wide) in paragraph at lines 64--64
T1/cmr/bx/n/14.4 Estimating the odds ra-tio in a case-control study
line-breaking hyphenation knitr
1
Please show us a short compilable code resulting in your issue and please add the complete error message you got in your log file to your question ...
– Kurt
Dec 3 at 17:16
1
Depending on the document class you employ, executingusepackage{sectsty}allsectionsfont{raggedright}
in the preamble might fix your issue with overfull hboxes in sectioning headers.
– Mico
Dec 3 at 17:24
I just usedocumentclass{article}
. If I use a quick minimal example everything works fine... I don't understand
– zest16
Dec 3 at 17:33
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Every now and then I get this error and I don't know how to solve it. From what I understand reading other posts, it's because LaTeX doesn't know how to hyphenate some sentences and finds no good way to break the line.
In my case I have the following line:
section{Estimating the odds ratio in a case-control study}
And the following error:
Overfull hbox (7.52351pt too wide) in paragraph at lines 64--64
I've tried using -
to no avail. Interestingly enough if used as an item instead of a section title there's no error.
Thanks
Edit:
The log error:
Overfull hbox (7.52351pt too wide) in paragraph at lines 64--64
T1/cmr/bx/n/14.4 Estimating the odds ra-tio in a case-control study
line-breaking hyphenation knitr
Every now and then I get this error and I don't know how to solve it. From what I understand reading other posts, it's because LaTeX doesn't know how to hyphenate some sentences and finds no good way to break the line.
In my case I have the following line:
section{Estimating the odds ratio in a case-control study}
And the following error:
Overfull hbox (7.52351pt too wide) in paragraph at lines 64--64
I've tried using -
to no avail. Interestingly enough if used as an item instead of a section title there's no error.
Thanks
Edit:
The log error:
Overfull hbox (7.52351pt too wide) in paragraph at lines 64--64
T1/cmr/bx/n/14.4 Estimating the odds ra-tio in a case-control study
line-breaking hyphenation knitr
line-breaking hyphenation knitr
edited Dec 3 at 17:31
asked Dec 3 at 17:14
zest16
205
205
1
Please show us a short compilable code resulting in your issue and please add the complete error message you got in your log file to your question ...
– Kurt
Dec 3 at 17:16
1
Depending on the document class you employ, executingusepackage{sectsty}allsectionsfont{raggedright}
in the preamble might fix your issue with overfull hboxes in sectioning headers.
– Mico
Dec 3 at 17:24
I just usedocumentclass{article}
. If I use a quick minimal example everything works fine... I don't understand
– zest16
Dec 3 at 17:33
add a comment |
1
Please show us a short compilable code resulting in your issue and please add the complete error message you got in your log file to your question ...
– Kurt
Dec 3 at 17:16
1
Depending on the document class you employ, executingusepackage{sectsty}allsectionsfont{raggedright}
in the preamble might fix your issue with overfull hboxes in sectioning headers.
– Mico
Dec 3 at 17:24
I just usedocumentclass{article}
. If I use a quick minimal example everything works fine... I don't understand
– zest16
Dec 3 at 17:33
1
1
Please show us a short compilable code resulting in your issue and please add the complete error message you got in your log file to your question ...
– Kurt
Dec 3 at 17:16
Please show us a short compilable code resulting in your issue and please add the complete error message you got in your log file to your question ...
– Kurt
Dec 3 at 17:16
1
1
Depending on the document class you employ, executing
usepackage{sectsty}allsectionsfont{raggedright}
in the preamble might fix your issue with overfull hboxes in sectioning headers.– Mico
Dec 3 at 17:24
Depending on the document class you employ, executing
usepackage{sectsty}allsectionsfont{raggedright}
in the preamble might fix your issue with overfull hboxes in sectioning headers.– Mico
Dec 3 at 17:24
I just use
documentclass{article}
. If I use a quick minimal example everything works fine... I don't understand– zest16
Dec 3 at 17:33
I just use
documentclass{article}
. If I use a quick minimal example everything works fine... I don't understand– zest16
Dec 3 at 17:33
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
You have
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a case-control study}
zz
end{document}
which produces
Overfull hbox (7.52351pt too wide) in paragraph at lines 6--6
You could adjust the class settings for the headings but for section headings you may want to assert manual control:
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section[Estimating the odds ratio in a case-control study]
{Estimating the odds ratio\ in a case-control study}
zz
end{document}
add a comment |
up vote
0
down vote
What is worse? Self-commented MWE with self-answer (i.e., your own answer).
documentclass{article}
usepackage{lipsum}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a \case-control study}
To hell the limits! why bother by margins? lipsum[1][1-2]
section{Estimating the odds ratio in a case-con-trol study}
Ouch! Ugly hyphens! lipsum[2][1-3]
section{Estimating the odds ratio in a case-protectlinebreak[4]control study}
Ouch! Ugly spaces! lipsum[4][1-4]
section{Estimating the odds ratio in a case-control study}
Ugly verb|hbox|!! ... Did you noticed it? lipsum[1][1-3]
section{Estimating OR in a case-control study}
Ugly rewrite! And it is so exhausting... lipsum[5][1-3]
end{document}
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You have
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a case-control study}
zz
end{document}
which produces
Overfull hbox (7.52351pt too wide) in paragraph at lines 6--6
You could adjust the class settings for the headings but for section headings you may want to assert manual control:
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section[Estimating the odds ratio in a case-control study]
{Estimating the odds ratio\ in a case-control study}
zz
end{document}
add a comment |
up vote
1
down vote
You have
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a case-control study}
zz
end{document}
which produces
Overfull hbox (7.52351pt too wide) in paragraph at lines 6--6
You could adjust the class settings for the headings but for section headings you may want to assert manual control:
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section[Estimating the odds ratio in a case-control study]
{Estimating the odds ratio\ in a case-control study}
zz
end{document}
add a comment |
up vote
1
down vote
up vote
1
down vote
You have
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a case-control study}
zz
end{document}
which produces
Overfull hbox (7.52351pt too wide) in paragraph at lines 6--6
You could adjust the class settings for the headings but for section headings you may want to assert manual control:
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section[Estimating the odds ratio in a case-control study]
{Estimating the odds ratio\ in a case-control study}
zz
end{document}
You have
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a case-control study}
zz
end{document}
which produces
Overfull hbox (7.52351pt too wide) in paragraph at lines 6--6
You could adjust the class settings for the headings but for section headings you may want to assert manual control:
documentclass{article}
setlengthtextwidth{309.49615pt}
begin{document}
section[Estimating the odds ratio in a case-control study]
{Estimating the odds ratio\ in a case-control study}
zz
end{document}
answered Dec 3 at 19:31
David Carlisle
480k3811121847
480k3811121847
add a comment |
add a comment |
up vote
0
down vote
What is worse? Self-commented MWE with self-answer (i.e., your own answer).
documentclass{article}
usepackage{lipsum}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a \case-control study}
To hell the limits! why bother by margins? lipsum[1][1-2]
section{Estimating the odds ratio in a case-con-trol study}
Ouch! Ugly hyphens! lipsum[2][1-3]
section{Estimating the odds ratio in a case-protectlinebreak[4]control study}
Ouch! Ugly spaces! lipsum[4][1-4]
section{Estimating the odds ratio in a case-control study}
Ugly verb|hbox|!! ... Did you noticed it? lipsum[1][1-3]
section{Estimating OR in a case-control study}
Ugly rewrite! And it is so exhausting... lipsum[5][1-3]
end{document}
add a comment |
up vote
0
down vote
What is worse? Self-commented MWE with self-answer (i.e., your own answer).
documentclass{article}
usepackage{lipsum}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a \case-control study}
To hell the limits! why bother by margins? lipsum[1][1-2]
section{Estimating the odds ratio in a case-con-trol study}
Ouch! Ugly hyphens! lipsum[2][1-3]
section{Estimating the odds ratio in a case-protectlinebreak[4]control study}
Ouch! Ugly spaces! lipsum[4][1-4]
section{Estimating the odds ratio in a case-control study}
Ugly verb|hbox|!! ... Did you noticed it? lipsum[1][1-3]
section{Estimating OR in a case-control study}
Ugly rewrite! And it is so exhausting... lipsum[5][1-3]
end{document}
add a comment |
up vote
0
down vote
up vote
0
down vote
What is worse? Self-commented MWE with self-answer (i.e., your own answer).
documentclass{article}
usepackage{lipsum}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a \case-control study}
To hell the limits! why bother by margins? lipsum[1][1-2]
section{Estimating the odds ratio in a case-con-trol study}
Ouch! Ugly hyphens! lipsum[2][1-3]
section{Estimating the odds ratio in a case-protectlinebreak[4]control study}
Ouch! Ugly spaces! lipsum[4][1-4]
section{Estimating the odds ratio in a case-control study}
Ugly verb|hbox|!! ... Did you noticed it? lipsum[1][1-3]
section{Estimating OR in a case-control study}
Ugly rewrite! And it is so exhausting... lipsum[5][1-3]
end{document}
What is worse? Self-commented MWE with self-answer (i.e., your own answer).
documentclass{article}
usepackage{lipsum}
setlengthtextwidth{309.49615pt}
begin{document}
section{Estimating the odds ratio in a \case-control study}
To hell the limits! why bother by margins? lipsum[1][1-2]
section{Estimating the odds ratio in a case-con-trol study}
Ouch! Ugly hyphens! lipsum[2][1-3]
section{Estimating the odds ratio in a case-protectlinebreak[4]control study}
Ouch! Ugly spaces! lipsum[4][1-4]
section{Estimating the odds ratio in a case-control study}
Ugly verb|hbox|!! ... Did you noticed it? lipsum[1][1-3]
section{Estimating OR in a case-control study}
Ugly rewrite! And it is so exhausting... lipsum[5][1-3]
end{document}
answered Dec 3 at 22:39
Fran
50.4k6111174
50.4k6111174
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f463008%2foverfull-hbox-in-a-section-title%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
Please show us a short compilable code resulting in your issue and please add the complete error message you got in your log file to your question ...
– Kurt
Dec 3 at 17:16
1
Depending on the document class you employ, executing
usepackage{sectsty}allsectionsfont{raggedright}
in the preamble might fix your issue with overfull hboxes in sectioning headers.– Mico
Dec 3 at 17:24
I just use
documentclass{article}
. If I use a quick minimal example everything works fine... I don't understand– zest16
Dec 3 at 17:33