width of colorbox

Multi tool use
I was wondering if there's a way to set the length of a colorbox. For example:
As you can see, the right edge of the box is a bit too much (and the left edge too), and I just want the edges to exactly fit the text.
The two right square brackets have too much of a space in between them (looks like ] ]),but my hope would be something more like ]]).
This is my current code.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{framed, color}
definecolor{shadecolor}{gray}{0.85}
title{}
author{}
date{}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 colorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
Can anyone help improve this? Thanks!
colorbox
New contributor
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I was wondering if there's a way to set the length of a colorbox. For example:
As you can see, the right edge of the box is a bit too much (and the left edge too), and I just want the edges to exactly fit the text.
The two right square brackets have too much of a space in between them (looks like ] ]),but my hope would be something more like ]]).
This is my current code.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{framed, color}
definecolor{shadecolor}{gray}{0.85}
title{}
author{}
date{}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 colorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
Can anyone help improve this? Thanks!
colorbox
New contributor
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I was wondering if there's a way to set the length of a colorbox. For example:
As you can see, the right edge of the box is a bit too much (and the left edge too), and I just want the edges to exactly fit the text.
The two right square brackets have too much of a space in between them (looks like ] ]),but my hope would be something more like ]]).
This is my current code.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{framed, color}
definecolor{shadecolor}{gray}{0.85}
title{}
author{}
date{}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 colorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
Can anyone help improve this? Thanks!
colorbox
New contributor
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I was wondering if there's a way to set the length of a colorbox. For example:
As you can see, the right edge of the box is a bit too much (and the left edge too), and I just want the edges to exactly fit the text.
The two right square brackets have too much of a space in between them (looks like ] ]),but my hope would be something more like ]]).
This is my current code.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{framed, color}
definecolor{shadecolor}{gray}{0.85}
title{}
author{}
date{}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 colorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
Can anyone help improve this? Thanks!
colorbox
colorbox
New contributor
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 2 hours ago


flav
3,5071725
3,5071725
New contributor
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 hours ago
user181606user181606
162
162
New contributor
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
user181606 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
You can set fboxsep
to 0pt
and then increase the height of the material inside manually if you need.
documentclass{article}
usepackage{xcolor}
setlength{fboxsep}{0pt}
begin{document}
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]strut}]
bigskip
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]vrule height 4mm depth 2.5mm width 0mm}]
end{document}
thanks David!!!
– user181606
1 hour ago
add a comment |
A TikZy alternative to David Koala Purton's nice answer.
documentclass{article}
usepackage{amsmath}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
tikzmarknode[fill=gray!30,inner xsep=-0.1em]{X}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
thanks marmot!!
– user181606
1 hour ago
add a comment |
You can use adjustbox
as a replacement for colorbox
and use the margin
and bgcolor
keys to get the frame separation only on top and bottom but not (or less) on left and right.
The following sets the left/right margin to 0pt and the top/bottom margin to the same as with colorbox
.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{color}
usepackage{adjustbox}
definecolor{shadecolor}{gray}{0.85}
newcommandmycolorbox[1]{adjustbox{margin=0pt {fboxsep},bgcolor=#1}}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 mycolorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
and thank you too Martin!!
– user181606
1 hour 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
});
}
});
user181606 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f474969%2fwidth-of-colorbox%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can set fboxsep
to 0pt
and then increase the height of the material inside manually if you need.
documentclass{article}
usepackage{xcolor}
setlength{fboxsep}{0pt}
begin{document}
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]strut}]
bigskip
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]vrule height 4mm depth 2.5mm width 0mm}]
end{document}
thanks David!!!
– user181606
1 hour ago
add a comment |
You can set fboxsep
to 0pt
and then increase the height of the material inside manually if you need.
documentclass{article}
usepackage{xcolor}
setlength{fboxsep}{0pt}
begin{document}
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]strut}]
bigskip
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]vrule height 4mm depth 2.5mm width 0mm}]
end{document}
thanks David!!!
– user181606
1 hour ago
add a comment |
You can set fboxsep
to 0pt
and then increase the height of the material inside manually if you need.
documentclass{article}
usepackage{xcolor}
setlength{fboxsep}{0pt}
begin{document}
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]strut}]
bigskip
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]vrule height 4mm depth 2.5mm width 0mm}]
end{document}
You can set fboxsep
to 0pt
and then increase the height of the material inside manually if you need.
documentclass{article}
usepackage{xcolor}
setlength{fboxsep}{0pt}
begin{document}
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]strut}]
bigskip
colorbox{black!15}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t}
zau2-zo2]vrule height 4mm depth 2.5mm width 0mm}]
end{document}
answered 2 hours ago


David PurtonDavid Purton
9,7001936
9,7001936
thanks David!!!
– user181606
1 hour ago
add a comment |
thanks David!!!
– user181606
1 hour ago
thanks David!!!
– user181606
1 hour ago
thanks David!!!
– user181606
1 hour ago
add a comment |
A TikZy alternative to David Koala Purton's nice answer.
documentclass{article}
usepackage{amsmath}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
tikzmarknode[fill=gray!30,inner xsep=-0.1em]{X}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
thanks marmot!!
– user181606
1 hour ago
add a comment |
A TikZy alternative to David Koala Purton's nice answer.
documentclass{article}
usepackage{amsmath}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
tikzmarknode[fill=gray!30,inner xsep=-0.1em]{X}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
thanks marmot!!
– user181606
1 hour ago
add a comment |
A TikZy alternative to David Koala Purton's nice answer.
documentclass{article}
usepackage{amsmath}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
tikzmarknode[fill=gray!30,inner xsep=-0.1em]{X}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
A TikZy alternative to David Koala Purton's nice answer.
documentclass{article}
usepackage{amsmath}
usepackage{tikz}
usetikzlibrary{tikzmark}
begin{document}
tikzmarknode[fill=gray!30,inner xsep=-0.1em]{X}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
answered 2 hours ago


marmotmarmot
100k4115222
100k4115222
thanks marmot!!
– user181606
1 hour ago
add a comment |
thanks marmot!!
– user181606
1 hour ago
thanks marmot!!
– user181606
1 hour ago
thanks marmot!!
– user181606
1 hour ago
add a comment |
You can use adjustbox
as a replacement for colorbox
and use the margin
and bgcolor
keys to get the frame separation only on top and bottom but not (or less) on left and right.
The following sets the left/right margin to 0pt and the top/bottom margin to the same as with colorbox
.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{color}
usepackage{adjustbox}
definecolor{shadecolor}{gray}{0.85}
newcommandmycolorbox[1]{adjustbox{margin=0pt {fboxsep},bgcolor=#1}}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 mycolorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
and thank you too Martin!!
– user181606
1 hour ago
add a comment |
You can use adjustbox
as a replacement for colorbox
and use the margin
and bgcolor
keys to get the frame separation only on top and bottom but not (or less) on left and right.
The following sets the left/right margin to 0pt and the top/bottom margin to the same as with colorbox
.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{color}
usepackage{adjustbox}
definecolor{shadecolor}{gray}{0.85}
newcommandmycolorbox[1]{adjustbox{margin=0pt {fboxsep},bgcolor=#1}}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 mycolorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
and thank you too Martin!!
– user181606
1 hour ago
add a comment |
You can use adjustbox
as a replacement for colorbox
and use the margin
and bgcolor
keys to get the frame separation only on top and bottom but not (or less) on left and right.
The following sets the left/right margin to 0pt and the top/bottom margin to the same as with colorbox
.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{color}
usepackage{adjustbox}
definecolor{shadecolor}{gray}{0.85}
newcommandmycolorbox[1]{adjustbox{margin=0pt {fboxsep},bgcolor=#1}}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 mycolorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
You can use adjustbox
as a replacement for colorbox
and use the margin
and bgcolor
keys to get the frame separation only on top and bottom but not (or less) on left and right.
The following sets the left/right margin to 0pt and the top/bottom margin to the same as with colorbox
.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{times}
usepackage{color}
usepackage{adjustbox}
definecolor{shadecolor}{gray}{0.85}
newcommandmycolorbox[1]{adjustbox{margin=0pt {fboxsep},bgcolor=#1}}
begin{document}
section{Example}
[textsubscript{CPtextsubscript{2}} Ming4zai2 mycolorbox{shadecolor}{[textsubscript{CP} laa3 [textsubscript{TP} textit{t} zau2-zo2]}]
end{document}
answered 1 hour ago


Martin Scharrer♦Martin Scharrer
201k45642819
201k45642819
and thank you too Martin!!
– user181606
1 hour ago
add a comment |
and thank you too Martin!!
– user181606
1 hour ago
and thank you too Martin!!
– user181606
1 hour ago
and thank you too Martin!!
– user181606
1 hour ago
add a comment |
user181606 is a new contributor. Be nice, and check out our Code of Conduct.
user181606 is a new contributor. Be nice, and check out our Code of Conduct.
user181606 is a new contributor. Be nice, and check out our Code of Conduct.
user181606 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f474969%2fwidth-of-colorbox%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
rmxnrcsP2dp SPzy,lGjmj,yJAJEG6NXW8gJxS4,yVN2D64iZ0 Na4 oN NUo0T,EtW6ceGtrD6G es09sJi