Underfull hbox with itemize, tabular, and minipage in overleaf LaTeX document
I'm using overleaf.com to format my resume with LaTeX. I keep getting underfull hbox
warnings around the sections of my resume where I describe past jobs using itemize
cvjob{Job Title}{Company}{https://www.example.com/home}{logo_company}{My City, AA}{Aug 2018 - Current}{
begin{itemize}
item Identified and documented bugs and deficiencies
item Investigated product quality in order to make improvements to achieve better user experience
item Contributed to website development using Gatsby
end{itemize}
}
The following error shows up on the last line with the closing bracket:
Underfull hbox (badness 10000) in paragraph at lines 14--14
the cvjob is defined as
newcommand{cvjob}[7]{
begin{minipage}{1.7cm}
includegraphics[width=1.5cm]{#4}
end{minipage}
begin{minipage}{linewidth-2cm}
color{emphasis}
begin{tabular}{@{}L{3.5cm} l}
{librefranklinsemibold #1} &
{librefranklin href{#3}{color{emphasis} #2}} \
end{tabular}
small
begin{tabular}{@{}L{3.5cm} l}
color{accent} faMapMarker hspace{1mm} color{emphasis} #5 &
color{accent} faCalendar hspace{1mm} color{emphasis} #6 \
end{tabular}
par
color{black} normalsize raggedleft #7
end{minipage}
}
How can I improve my code to get rid of the underfull hbox
warnings?
warnings
add a comment |
I'm using overleaf.com to format my resume with LaTeX. I keep getting underfull hbox
warnings around the sections of my resume where I describe past jobs using itemize
cvjob{Job Title}{Company}{https://www.example.com/home}{logo_company}{My City, AA}{Aug 2018 - Current}{
begin{itemize}
item Identified and documented bugs and deficiencies
item Investigated product quality in order to make improvements to achieve better user experience
item Contributed to website development using Gatsby
end{itemize}
}
The following error shows up on the last line with the closing bracket:
Underfull hbox (badness 10000) in paragraph at lines 14--14
the cvjob is defined as
newcommand{cvjob}[7]{
begin{minipage}{1.7cm}
includegraphics[width=1.5cm]{#4}
end{minipage}
begin{minipage}{linewidth-2cm}
color{emphasis}
begin{tabular}{@{}L{3.5cm} l}
{librefranklinsemibold #1} &
{librefranklin href{#3}{color{emphasis} #2}} \
end{tabular}
small
begin{tabular}{@{}L{3.5cm} l}
color{accent} faMapMarker hspace{1mm} color{emphasis} #5 &
color{accent} faCalendar hspace{1mm} color{emphasis} #6 \
end{tabular}
par
color{black} normalsize raggedleft #7
end{minipage}
}
How can I improve my code to get rid of the underfull hbox
warnings?
warnings
3
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
Jan 3 at 23:51
add a comment |
I'm using overleaf.com to format my resume with LaTeX. I keep getting underfull hbox
warnings around the sections of my resume where I describe past jobs using itemize
cvjob{Job Title}{Company}{https://www.example.com/home}{logo_company}{My City, AA}{Aug 2018 - Current}{
begin{itemize}
item Identified and documented bugs and deficiencies
item Investigated product quality in order to make improvements to achieve better user experience
item Contributed to website development using Gatsby
end{itemize}
}
The following error shows up on the last line with the closing bracket:
Underfull hbox (badness 10000) in paragraph at lines 14--14
the cvjob is defined as
newcommand{cvjob}[7]{
begin{minipage}{1.7cm}
includegraphics[width=1.5cm]{#4}
end{minipage}
begin{minipage}{linewidth-2cm}
color{emphasis}
begin{tabular}{@{}L{3.5cm} l}
{librefranklinsemibold #1} &
{librefranklin href{#3}{color{emphasis} #2}} \
end{tabular}
small
begin{tabular}{@{}L{3.5cm} l}
color{accent} faMapMarker hspace{1mm} color{emphasis} #5 &
color{accent} faCalendar hspace{1mm} color{emphasis} #6 \
end{tabular}
par
color{black} normalsize raggedleft #7
end{minipage}
}
How can I improve my code to get rid of the underfull hbox
warnings?
warnings
I'm using overleaf.com to format my resume with LaTeX. I keep getting underfull hbox
warnings around the sections of my resume where I describe past jobs using itemize
cvjob{Job Title}{Company}{https://www.example.com/home}{logo_company}{My City, AA}{Aug 2018 - Current}{
begin{itemize}
item Identified and documented bugs and deficiencies
item Investigated product quality in order to make improvements to achieve better user experience
item Contributed to website development using Gatsby
end{itemize}
}
The following error shows up on the last line with the closing bracket:
Underfull hbox (badness 10000) in paragraph at lines 14--14
the cvjob is defined as
newcommand{cvjob}[7]{
begin{minipage}{1.7cm}
includegraphics[width=1.5cm]{#4}
end{minipage}
begin{minipage}{linewidth-2cm}
color{emphasis}
begin{tabular}{@{}L{3.5cm} l}
{librefranklinsemibold #1} &
{librefranklin href{#3}{color{emphasis} #2}} \
end{tabular}
small
begin{tabular}{@{}L{3.5cm} l}
color{accent} faMapMarker hspace{1mm} color{emphasis} #5 &
color{accent} faCalendar hspace{1mm} color{emphasis} #6 \
end{tabular}
par
color{black} normalsize raggedleft #7
end{minipage}
}
How can I improve my code to get rid of the underfull hbox
warnings?
warnings
warnings
edited Jan 4 at 8:07
Martin Scharrer♦
199k45633818
199k45633818
asked Jan 3 at 23:42
EllieEllie
13
13
3
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
Jan 3 at 23:51
add a comment |
3
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) includingdocumentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– samcarter
Jan 3 at 23:51
3
3
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
Jan 3 at 23:51
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
Jan 3 at 23:51
add a comment |
0
active
oldest
votes
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%2f468481%2funderfull-hbox-with-itemize-tabular-and-minipage-in-overleaf-latex-document%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f468481%2funderfull-hbox-with-itemize-tabular-and-minipage-in-overleaf-latex-document%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
Welcome to TeX.SE. It would be helpful if you composed a fully compilable minimal working example (MWE) including
documentclass
and the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– samcarter
Jan 3 at 23:51