width of colorbox












3















I was wondering if there's a way to set the length of a colorbox. For example:



enter image description here



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!










share|improve this question









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.

























    3















    I was wondering if there's a way to set the length of a colorbox. For example:



    enter image description here



    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!










    share|improve this question









    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.























      3












      3








      3








      I was wondering if there's a way to set the length of a colorbox. For example:



      enter image description here



      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!










      share|improve this question









      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:



      enter image description here



      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






      share|improve this question









      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.











      share|improve this question









      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.









      share|improve this question




      share|improve this question








      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.






















          3 Answers
          3






          active

          oldest

          votes


















          2














          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}


          output






          share|improve this answer
























          • thanks David!!!

            – user181606
            1 hour ago



















          2














          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}


          enter image description here






          share|improve this answer
























          • thanks marmot!!

            – user181606
            1 hour ago



















          2














          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}


          enter image description here






          share|improve this answer
























          • and thank you too Martin!!

            – user181606
            1 hour ago











          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.










          draft saved

          draft discarded


















          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









          2














          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}


          output






          share|improve this answer
























          • thanks David!!!

            – user181606
            1 hour ago
















          2














          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}


          output






          share|improve this answer
























          • thanks David!!!

            – user181606
            1 hour ago














          2












          2








          2







          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}


          output






          share|improve this answer













          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}


          output







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 hours ago









          David PurtonDavid Purton

          9,7001936




          9,7001936













          • thanks David!!!

            – user181606
            1 hour ago



















          • thanks David!!!

            – user181606
            1 hour ago

















          thanks David!!!

          – user181606
          1 hour ago





          thanks David!!!

          – user181606
          1 hour ago











          2














          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}


          enter image description here






          share|improve this answer
























          • thanks marmot!!

            – user181606
            1 hour ago
















          2














          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}


          enter image description here






          share|improve this answer
























          • thanks marmot!!

            – user181606
            1 hour ago














          2












          2








          2







          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}


          enter image description here






          share|improve this answer













          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}


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 hours ago









          marmotmarmot

          100k4115222




          100k4115222













          • thanks marmot!!

            – user181606
            1 hour ago



















          • thanks marmot!!

            – user181606
            1 hour ago

















          thanks marmot!!

          – user181606
          1 hour ago





          thanks marmot!!

          – user181606
          1 hour ago











          2














          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}


          enter image description here






          share|improve this answer
























          • and thank you too Martin!!

            – user181606
            1 hour ago
















          2














          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}


          enter image description here






          share|improve this answer
























          • and thank you too Martin!!

            – user181606
            1 hour ago














          2












          2








          2







          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}


          enter image description here






          share|improve this answer













          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}


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 1 hour ago









          Martin ScharrerMartin Scharrer

          201k45642819




          201k45642819













          • 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





          and thank you too Martin!!

          – user181606
          1 hour ago










          user181606 is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          SQL Server 17 - Attemping to backup to remote NAS but Access is denied

          Always On Availability groups resolving state after failover - Remote harden of transaction...

          Restoring from pg_dump with foreign key constraints