Bold and Colored Image CaptionHow to make caption bold in ctable?How to renew caption command to get bold...

Estimates on number of topologies on a finite set

Distinguish the explanations of Galadriel's test in LotR

What could cause the sea level to massively decrease?

How many tone holes are there actually in different orchestral woodwind instruments?

How do you say "translation" in Koine Greek?

How was the Shuttle loaded and unloaded from its carrier aircraft?

What was this character's plan?

Appropriate conduit for several data cables underground over 300' run

No Torah = Revert to Nothingness?

What would +1/+2/+3 items be called in game?

how does the Raspberry Pi PoE shield work?

Finding overlapping polygons in two shapefiles and deleting them in R?

Can a landlord force all residents to use the landlord's in-house debit card accounts?

Is it ok for parents to kiss and romance with each other while their 2- to 8-year-old child watches?

What's it called when the bad guy gets eaten?

Did the Ottoman empire suppress the printing press?

Performance issue in code for reading line and testing for palindrome

This LM317 diagram doesn't make any sense to me

Would a carnivorous diet be able to support a giant worm?

What happens to unproductive professors?

Classical Greek for 'You came home to our hearts with your shield'?

Moving millions of files to a different directory with specfic name patterns

Did depressed people far more accurately estimate how many monsters they killed in a video game?

When did "&" stop being taught alongside the alphabet?



Bold and Colored Image Caption


How to make caption bold in ctable?How to renew caption command to get bold title?Automatically bold first sentence of a floats captioncolored table with some bold colored linesBoxed caption and figure, with colored captionBold and colored figure caption label in beamer?Change Algorithm caption Label color to blue and bold italicsHow we can make term 'Figure' to be bold and rest part of the caption to remain as it is?KOMA-Script and sidenotes : how to format side (margin) caption and its caption label?Different caption for list of figures and tables






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







2















How can I color and bold an image's caption in documentclass[12pt]{report}?










share|improve this question









New contributor



sally yamak is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    2















    How can I color and bold an image's caption in documentclass[12pt]{report}?










    share|improve this question









    New contributor



    sally yamak is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      2












      2








      2








      How can I color and bold an image's caption in documentclass[12pt]{report}?










      share|improve this question









      New contributor



      sally yamak is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      How can I color and bold an image's caption in documentclass[12pt]{report}?







      formatting color captions






      share|improve this question









      New contributor



      sally yamak 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



      sally yamak 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 8 hours ago









      Shady Puck

      1337 bronze badges




      1337 bronze badges






      New contributor



      sally yamak is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      asked 9 hours ago









      sally yamaksally yamak

      153 bronze badges




      153 bronze badges




      New contributor



      sally yamak is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




      New contributor




      sally yamak is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.
























          2 Answers
          2






          active

          oldest

          votes


















          2














          In this documentclass, as, I believe, in any documentclass, it is possible to use the caption package and the textcolor command.



          For example, if I want to color blue and bold the caption of a simple triangle drawn in TikZ in your documentclass, I can use the following code to achieve the following output, which I will break down below.



          documentclass[12pt]{report}

          usepackage{tikz}
          usepackage[labelfont={color=blue,bf}]{caption}

          begin{document}

          begin{figure}[h!]
          centering
          begin{tikzpicture}
          draw[black, very thick] (0,0) -- (3,2) -- (4,0) -- cycle;
          end{tikzpicture}
          caption{textbf{textcolor{blue}{A triangle.}}}
          label{fig:triangle}
          end{figure}

          end{document}


          enter image description here



          I began by declaring your documentclass of choice. Next, I called in tikz for the triangle and caption to change the color of "Figure 1:". I modified caption with two constraints under one modifier (labelfont), namely declaring the color to be blue (although it could be many others) and "bf" for boldface.



          Then, down in the actual figure, I used textbf{textcolor{<color>}{<caption>}}. This combines the two separate commands to color the caption, itself.



          Hope this helps!






          share|improve this answer








          New contributor



          Shady Puck is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.















          • 1





            The problem, is that any cross-reference to this figure will also be in blue and boldface…

            – Bernard
            8 hours ago













          • @Bernard, not really, only cross reference will be only bold and not colored.

            – Zarko
            8 hours ago











          • @Zarko: really? In any case, it is preferable to do that through the caption package.

            – Bernard
            8 hours ago



















          1














          Slightly simplified version of @Shady Puck answer:



          documentclass[12pt]{report}
          usepackage{graphicx}
          usepackage{xcolor}
          usepackage{caption}
          captionsetup{font={color=blue,bf}} % <---

          begin{document}

          begin{figure}[htb]
          centering
          includegraphics[width=0.8linewidth]{example-image-duck}
          caption{A triangle.}
          label{fig:myfig}
          end{figure}
          See figure~ref{fig:myfig} % <---

          end{document}


          enter image description here






          share|improve this answer


























            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
            });


            }
            });






            sally yamak 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%2f499038%2fbold-and-colored-image-caption%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            In this documentclass, as, I believe, in any documentclass, it is possible to use the caption package and the textcolor command.



            For example, if I want to color blue and bold the caption of a simple triangle drawn in TikZ in your documentclass, I can use the following code to achieve the following output, which I will break down below.



            documentclass[12pt]{report}

            usepackage{tikz}
            usepackage[labelfont={color=blue,bf}]{caption}

            begin{document}

            begin{figure}[h!]
            centering
            begin{tikzpicture}
            draw[black, very thick] (0,0) -- (3,2) -- (4,0) -- cycle;
            end{tikzpicture}
            caption{textbf{textcolor{blue}{A triangle.}}}
            label{fig:triangle}
            end{figure}

            end{document}


            enter image description here



            I began by declaring your documentclass of choice. Next, I called in tikz for the triangle and caption to change the color of "Figure 1:". I modified caption with two constraints under one modifier (labelfont), namely declaring the color to be blue (although it could be many others) and "bf" for boldface.



            Then, down in the actual figure, I used textbf{textcolor{<color>}{<caption>}}. This combines the two separate commands to color the caption, itself.



            Hope this helps!






            share|improve this answer








            New contributor



            Shady Puck is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.















            • 1





              The problem, is that any cross-reference to this figure will also be in blue and boldface…

              – Bernard
              8 hours ago













            • @Bernard, not really, only cross reference will be only bold and not colored.

              – Zarko
              8 hours ago











            • @Zarko: really? In any case, it is preferable to do that through the caption package.

              – Bernard
              8 hours ago
















            2














            In this documentclass, as, I believe, in any documentclass, it is possible to use the caption package and the textcolor command.



            For example, if I want to color blue and bold the caption of a simple triangle drawn in TikZ in your documentclass, I can use the following code to achieve the following output, which I will break down below.



            documentclass[12pt]{report}

            usepackage{tikz}
            usepackage[labelfont={color=blue,bf}]{caption}

            begin{document}

            begin{figure}[h!]
            centering
            begin{tikzpicture}
            draw[black, very thick] (0,0) -- (3,2) -- (4,0) -- cycle;
            end{tikzpicture}
            caption{textbf{textcolor{blue}{A triangle.}}}
            label{fig:triangle}
            end{figure}

            end{document}


            enter image description here



            I began by declaring your documentclass of choice. Next, I called in tikz for the triangle and caption to change the color of "Figure 1:". I modified caption with two constraints under one modifier (labelfont), namely declaring the color to be blue (although it could be many others) and "bf" for boldface.



            Then, down in the actual figure, I used textbf{textcolor{<color>}{<caption>}}. This combines the two separate commands to color the caption, itself.



            Hope this helps!






            share|improve this answer








            New contributor



            Shady Puck is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.















            • 1





              The problem, is that any cross-reference to this figure will also be in blue and boldface…

              – Bernard
              8 hours ago













            • @Bernard, not really, only cross reference will be only bold and not colored.

              – Zarko
              8 hours ago











            • @Zarko: really? In any case, it is preferable to do that through the caption package.

              – Bernard
              8 hours ago














            2












            2








            2







            In this documentclass, as, I believe, in any documentclass, it is possible to use the caption package and the textcolor command.



            For example, if I want to color blue and bold the caption of a simple triangle drawn in TikZ in your documentclass, I can use the following code to achieve the following output, which I will break down below.



            documentclass[12pt]{report}

            usepackage{tikz}
            usepackage[labelfont={color=blue,bf}]{caption}

            begin{document}

            begin{figure}[h!]
            centering
            begin{tikzpicture}
            draw[black, very thick] (0,0) -- (3,2) -- (4,0) -- cycle;
            end{tikzpicture}
            caption{textbf{textcolor{blue}{A triangle.}}}
            label{fig:triangle}
            end{figure}

            end{document}


            enter image description here



            I began by declaring your documentclass of choice. Next, I called in tikz for the triangle and caption to change the color of "Figure 1:". I modified caption with two constraints under one modifier (labelfont), namely declaring the color to be blue (although it could be many others) and "bf" for boldface.



            Then, down in the actual figure, I used textbf{textcolor{<color>}{<caption>}}. This combines the two separate commands to color the caption, itself.



            Hope this helps!






            share|improve this answer








            New contributor



            Shady Puck is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            In this documentclass, as, I believe, in any documentclass, it is possible to use the caption package and the textcolor command.



            For example, if I want to color blue and bold the caption of a simple triangle drawn in TikZ in your documentclass, I can use the following code to achieve the following output, which I will break down below.



            documentclass[12pt]{report}

            usepackage{tikz}
            usepackage[labelfont={color=blue,bf}]{caption}

            begin{document}

            begin{figure}[h!]
            centering
            begin{tikzpicture}
            draw[black, very thick] (0,0) -- (3,2) -- (4,0) -- cycle;
            end{tikzpicture}
            caption{textbf{textcolor{blue}{A triangle.}}}
            label{fig:triangle}
            end{figure}

            end{document}


            enter image description here



            I began by declaring your documentclass of choice. Next, I called in tikz for the triangle and caption to change the color of "Figure 1:". I modified caption with two constraints under one modifier (labelfont), namely declaring the color to be blue (although it could be many others) and "bf" for boldface.



            Then, down in the actual figure, I used textbf{textcolor{<color>}{<caption>}}. This combines the two separate commands to color the caption, itself.



            Hope this helps!







            share|improve this answer








            New contributor



            Shady Puck 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 answer



            share|improve this answer






            New contributor



            Shady Puck is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.








            answered 9 hours ago









            Shady PuckShady Puck

            1337 bronze badges




            1337 bronze badges




            New contributor



            Shady Puck is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.




            New contributor




            Shady Puck is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.










            • 1





              The problem, is that any cross-reference to this figure will also be in blue and boldface…

              – Bernard
              8 hours ago













            • @Bernard, not really, only cross reference will be only bold and not colored.

              – Zarko
              8 hours ago











            • @Zarko: really? In any case, it is preferable to do that through the caption package.

              – Bernard
              8 hours ago














            • 1





              The problem, is that any cross-reference to this figure will also be in blue and boldface…

              – Bernard
              8 hours ago













            • @Bernard, not really, only cross reference will be only bold and not colored.

              – Zarko
              8 hours ago











            • @Zarko: really? In any case, it is preferable to do that through the caption package.

              – Bernard
              8 hours ago








            1




            1





            The problem, is that any cross-reference to this figure will also be in blue and boldface…

            – Bernard
            8 hours ago







            The problem, is that any cross-reference to this figure will also be in blue and boldface…

            – Bernard
            8 hours ago















            @Bernard, not really, only cross reference will be only bold and not colored.

            – Zarko
            8 hours ago





            @Bernard, not really, only cross reference will be only bold and not colored.

            – Zarko
            8 hours ago













            @Zarko: really? In any case, it is preferable to do that through the caption package.

            – Bernard
            8 hours ago





            @Zarko: really? In any case, it is preferable to do that through the caption package.

            – Bernard
            8 hours ago













            1














            Slightly simplified version of @Shady Puck answer:



            documentclass[12pt]{report}
            usepackage{graphicx}
            usepackage{xcolor}
            usepackage{caption}
            captionsetup{font={color=blue,bf}} % <---

            begin{document}

            begin{figure}[htb]
            centering
            includegraphics[width=0.8linewidth]{example-image-duck}
            caption{A triangle.}
            label{fig:myfig}
            end{figure}
            See figure~ref{fig:myfig} % <---

            end{document}


            enter image description here






            share|improve this answer




























              1














              Slightly simplified version of @Shady Puck answer:



              documentclass[12pt]{report}
              usepackage{graphicx}
              usepackage{xcolor}
              usepackage{caption}
              captionsetup{font={color=blue,bf}} % <---

              begin{document}

              begin{figure}[htb]
              centering
              includegraphics[width=0.8linewidth]{example-image-duck}
              caption{A triangle.}
              label{fig:myfig}
              end{figure}
              See figure~ref{fig:myfig} % <---

              end{document}


              enter image description here






              share|improve this answer


























                1












                1








                1







                Slightly simplified version of @Shady Puck answer:



                documentclass[12pt]{report}
                usepackage{graphicx}
                usepackage{xcolor}
                usepackage{caption}
                captionsetup{font={color=blue,bf}} % <---

                begin{document}

                begin{figure}[htb]
                centering
                includegraphics[width=0.8linewidth]{example-image-duck}
                caption{A triangle.}
                label{fig:myfig}
                end{figure}
                See figure~ref{fig:myfig} % <---

                end{document}


                enter image description here






                share|improve this answer













                Slightly simplified version of @Shady Puck answer:



                documentclass[12pt]{report}
                usepackage{graphicx}
                usepackage{xcolor}
                usepackage{caption}
                captionsetup{font={color=blue,bf}} % <---

                begin{document}

                begin{figure}[htb]
                centering
                includegraphics[width=0.8linewidth]{example-image-duck}
                caption{A triangle.}
                label{fig:myfig}
                end{figure}
                See figure~ref{fig:myfig} % <---

                end{document}


                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 8 hours ago









                ZarkoZarko

                139k8 gold badges77 silver badges187 bronze badges




                139k8 gold badges77 silver badges187 bronze badges






















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










                    draft saved

                    draft discarded


















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













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












                    sally yamak 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%2f499038%2fbold-and-colored-image-caption%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

                    Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

                    Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

                    Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...