Black square margin GFX bug
I've run across a GFX bug that seems to has something to do with text formatting and line breaks. It is a black box the size of a character, that appears in the right margin. It looks like this:

(source: it.uu.se)
On my homepage, you can view the entire document, as well as the LaTeX source. (It is on page 21.)
line-breaking
add a comment |
I've run across a GFX bug that seems to has something to do with text formatting and line breaks. It is a black box the size of a character, that appears in the right margin. It looks like this:

(source: it.uu.se)
On my homepage, you can view the entire document, as well as the LaTeX source. (It is on page 21.)
line-breaking
3
You have thedraftoption specified in yourdocumentclasscommand. This puts marks in the margin to point out places where TeX has put text outside the margins. See What does draft mode change?
– Alan Munn
Dec 22 '12 at 5:22
What is thisGFX?
– Heiko Oberdiek
Dec 22 '12 at 5:38
Note: the image is no longer available.
– BenC
Jan 15 '16 at 4:47
add a comment |
I've run across a GFX bug that seems to has something to do with text formatting and line breaks. It is a black box the size of a character, that appears in the right margin. It looks like this:

(source: it.uu.se)
On my homepage, you can view the entire document, as well as the LaTeX source. (It is on page 21.)
line-breaking
I've run across a GFX bug that seems to has something to do with text formatting and line breaks. It is a black box the size of a character, that appears in the right margin. It looks like this:

(source: it.uu.se)
On my homepage, you can view the entire document, as well as the LaTeX source. (It is on page 21.)
line-breaking
line-breaking
edited 24 mins ago
Glorfindel
231129
231129
asked Dec 22 '12 at 5:11
Emanuel BergEmanuel Berg
73921022
73921022
3
You have thedraftoption specified in yourdocumentclasscommand. This puts marks in the margin to point out places where TeX has put text outside the margins. See What does draft mode change?
– Alan Munn
Dec 22 '12 at 5:22
What is thisGFX?
– Heiko Oberdiek
Dec 22 '12 at 5:38
Note: the image is no longer available.
– BenC
Jan 15 '16 at 4:47
add a comment |
3
You have thedraftoption specified in yourdocumentclasscommand. This puts marks in the margin to point out places where TeX has put text outside the margins. See What does draft mode change?
– Alan Munn
Dec 22 '12 at 5:22
What is thisGFX?
– Heiko Oberdiek
Dec 22 '12 at 5:38
Note: the image is no longer available.
– BenC
Jan 15 '16 at 4:47
3
3
You have the
draft option specified in your documentclass command. This puts marks in the margin to point out places where TeX has put text outside the margins. See What does draft mode change?– Alan Munn
Dec 22 '12 at 5:22
You have the
draft option specified in your documentclass command. This puts marks in the margin to point out places where TeX has put text outside the margins. See What does draft mode change?– Alan Munn
Dec 22 '12 at 5:22
What is this
GFX?– Heiko Oberdiek
Dec 22 '12 at 5:38
What is this
GFX?– Heiko Oberdiek
Dec 22 '12 at 5:38
Note: the image is no longer available.
– BenC
Jan 15 '16 at 4:47
Note: the image is no longer available.
– BenC
Jan 15 '16 at 4:47
add a comment |
1 Answer
1
active
oldest
votes
You are using option parfill of package parskip. That requires a minimum space (30pt) at the end of the last line of a paragraph. In your case the paragraph has two lines and the second line is 13.1239pt too long for the minimum space of 30p. Therefore TeX prints an overfull hbox warning and because of option draft of document class report the overfull hbox is marked with a overfull rule with width 5pt.
Solutions:
- Resolving the overfull
hboxwarning. - Removing global option
draft.
Smaller minimum space of option
parfillof packageparskip:
usepackage[parfill]{parskip}
setlength{parfillskip}{16pt plus 1fil}
Thanks, also, @AlanMunn said the same. I removed thedraftoption, and it worked. I browsed the document, and everything seemed OK, so I guess removing that options won't have any other effects except getting rid of that box, which is what I want?
– Emanuel Berg
Dec 22 '12 at 5:46
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%2f87927%2fblack-square-margin-gfx-bug%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
You are using option parfill of package parskip. That requires a minimum space (30pt) at the end of the last line of a paragraph. In your case the paragraph has two lines and the second line is 13.1239pt too long for the minimum space of 30p. Therefore TeX prints an overfull hbox warning and because of option draft of document class report the overfull hbox is marked with a overfull rule with width 5pt.
Solutions:
- Resolving the overfull
hboxwarning. - Removing global option
draft.
Smaller minimum space of option
parfillof packageparskip:
usepackage[parfill]{parskip}
setlength{parfillskip}{16pt plus 1fil}
Thanks, also, @AlanMunn said the same. I removed thedraftoption, and it worked. I browsed the document, and everything seemed OK, so I guess removing that options won't have any other effects except getting rid of that box, which is what I want?
– Emanuel Berg
Dec 22 '12 at 5:46
add a comment |
You are using option parfill of package parskip. That requires a minimum space (30pt) at the end of the last line of a paragraph. In your case the paragraph has two lines and the second line is 13.1239pt too long for the minimum space of 30p. Therefore TeX prints an overfull hbox warning and because of option draft of document class report the overfull hbox is marked with a overfull rule with width 5pt.
Solutions:
- Resolving the overfull
hboxwarning. - Removing global option
draft.
Smaller minimum space of option
parfillof packageparskip:
usepackage[parfill]{parskip}
setlength{parfillskip}{16pt plus 1fil}
Thanks, also, @AlanMunn said the same. I removed thedraftoption, and it worked. I browsed the document, and everything seemed OK, so I guess removing that options won't have any other effects except getting rid of that box, which is what I want?
– Emanuel Berg
Dec 22 '12 at 5:46
add a comment |
You are using option parfill of package parskip. That requires a minimum space (30pt) at the end of the last line of a paragraph. In your case the paragraph has two lines and the second line is 13.1239pt too long for the minimum space of 30p. Therefore TeX prints an overfull hbox warning and because of option draft of document class report the overfull hbox is marked with a overfull rule with width 5pt.
Solutions:
- Resolving the overfull
hboxwarning. - Removing global option
draft.
Smaller minimum space of option
parfillof packageparskip:
usepackage[parfill]{parskip}
setlength{parfillskip}{16pt plus 1fil}
You are using option parfill of package parskip. That requires a minimum space (30pt) at the end of the last line of a paragraph. In your case the paragraph has two lines and the second line is 13.1239pt too long for the minimum space of 30p. Therefore TeX prints an overfull hbox warning and because of option draft of document class report the overfull hbox is marked with a overfull rule with width 5pt.
Solutions:
- Resolving the overfull
hboxwarning. - Removing global option
draft.
Smaller minimum space of option
parfillof packageparskip:
usepackage[parfill]{parskip}
setlength{parfillskip}{16pt plus 1fil}
answered Dec 22 '12 at 5:36
Heiko OberdiekHeiko Oberdiek
230k19557909
230k19557909
Thanks, also, @AlanMunn said the same. I removed thedraftoption, and it worked. I browsed the document, and everything seemed OK, so I guess removing that options won't have any other effects except getting rid of that box, which is what I want?
– Emanuel Berg
Dec 22 '12 at 5:46
add a comment |
Thanks, also, @AlanMunn said the same. I removed thedraftoption, and it worked. I browsed the document, and everything seemed OK, so I guess removing that options won't have any other effects except getting rid of that box, which is what I want?
– Emanuel Berg
Dec 22 '12 at 5:46
Thanks, also, @AlanMunn said the same. I removed the
draft option, and it worked. I browsed the document, and everything seemed OK, so I guess removing that options won't have any other effects except getting rid of that box, which is what I want?– Emanuel Berg
Dec 22 '12 at 5:46
Thanks, also, @AlanMunn said the same. I removed the
draft option, and it worked. I browsed the document, and everything seemed OK, so I guess removing that options won't have any other effects except getting rid of that box, which is what I want?– Emanuel Berg
Dec 22 '12 at 5:46
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%2f87927%2fblack-square-margin-gfx-bug%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
You have the
draftoption specified in yourdocumentclasscommand. This puts marks in the margin to point out places where TeX has put text outside the margins. See What does draft mode change?– Alan Munn
Dec 22 '12 at 5:22
What is this
GFX?– Heiko Oberdiek
Dec 22 '12 at 5:38
Note: the image is no longer available.
– BenC
Jan 15 '16 at 4:47