Is it possible to put a rectangle as background in the author section?












2















In the documentclass[xcolor={dvipsnames}]{beamer} Is it possible to put a rectangle as background in the author section ?



A kind of block, so that the author name has a background with light color.



Is it possible, if yes how?



I tried the begin{block}{a} ... end{block} and it compiles 'correct' but it makes the author disappear.



Any kind of help is very appreciated










share|improve this question























  • Actually I've just notice it does not disappear, it just put it at the top of the slide and it's just the name a

    – user178403
    yesterday






  • 1





    Please read minimal working example (MWE)

    – samcarter
    yesterday
















2















In the documentclass[xcolor={dvipsnames}]{beamer} Is it possible to put a rectangle as background in the author section ?



A kind of block, so that the author name has a background with light color.



Is it possible, if yes how?



I tried the begin{block}{a} ... end{block} and it compiles 'correct' but it makes the author disappear.



Any kind of help is very appreciated










share|improve this question























  • Actually I've just notice it does not disappear, it just put it at the top of the slide and it's just the name a

    – user178403
    yesterday






  • 1





    Please read minimal working example (MWE)

    – samcarter
    yesterday














2












2








2








In the documentclass[xcolor={dvipsnames}]{beamer} Is it possible to put a rectangle as background in the author section ?



A kind of block, so that the author name has a background with light color.



Is it possible, if yes how?



I tried the begin{block}{a} ... end{block} and it compiles 'correct' but it makes the author disappear.



Any kind of help is very appreciated










share|improve this question














In the documentclass[xcolor={dvipsnames}]{beamer} Is it possible to put a rectangle as background in the author section ?



A kind of block, so that the author name has a background with light color.



Is it possible, if yes how?



I tried the begin{block}{a} ... end{block} and it compiles 'correct' but it makes the author disappear.



Any kind of help is very appreciated







beamer backgrounds presentations block






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked yesterday









user178403user178403

1368




1368













  • Actually I've just notice it does not disappear, it just put it at the top of the slide and it's just the name a

    – user178403
    yesterday






  • 1





    Please read minimal working example (MWE)

    – samcarter
    yesterday



















  • Actually I've just notice it does not disappear, it just put it at the top of the slide and it's just the name a

    – user178403
    yesterday






  • 1





    Please read minimal working example (MWE)

    – samcarter
    yesterday

















Actually I've just notice it does not disappear, it just put it at the top of the slide and it's just the name a

– user178403
yesterday





Actually I've just notice it does not disappear, it just put it at the top of the slide and it's just the name a

– user178403
yesterday




1




1





Please read minimal working example (MWE)

– samcarter
yesterday





Please read minimal working example (MWE)

– samcarter
yesterday










1 Answer
1






active

oldest

votes


















5














The author is already in a box, you just don't see it because the default colour is white. You can change the colour like the following:



documentclass[xcolor={dvipsnames}]{beamer}

author{names}
setbeamercolor{author}{bg=red}

begin{document}

begin{frame}
titlepage
end{frame}

end{document}





share|improve this answer
























  • Thank you samcarter! Just one question, how to nivelate the level of red color? It's very intense and does not let distinguish the author text

    – user178403
    yesterday






  • 2





    @user178403 Either mix it with white (red!50!white) or use another colour you like, I just used it as an example.

    – samcarter
    yesterday











  • got it, is there a way to remove the gray shadow that has at the bottom of the block?

    – user178403
    yesterday






  • 1





    @user178403 Per default there is no gray shadow. You will have to make a MWE that allows us to reproduce your problem.

    – samcarter
    yesterday











  • I've fixed, it has to do with all the packages I have. This one useinnertheme[shadow]{rounded} I put % and gave the pure rectangle, thanks again.

    – user178403
    yesterday











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


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f481130%2fis-it-possible-to-put-a-rectangle-as-background-in-the-author-section%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









5














The author is already in a box, you just don't see it because the default colour is white. You can change the colour like the following:



documentclass[xcolor={dvipsnames}]{beamer}

author{names}
setbeamercolor{author}{bg=red}

begin{document}

begin{frame}
titlepage
end{frame}

end{document}





share|improve this answer
























  • Thank you samcarter! Just one question, how to nivelate the level of red color? It's very intense and does not let distinguish the author text

    – user178403
    yesterday






  • 2





    @user178403 Either mix it with white (red!50!white) or use another colour you like, I just used it as an example.

    – samcarter
    yesterday











  • got it, is there a way to remove the gray shadow that has at the bottom of the block?

    – user178403
    yesterday






  • 1





    @user178403 Per default there is no gray shadow. You will have to make a MWE that allows us to reproduce your problem.

    – samcarter
    yesterday











  • I've fixed, it has to do with all the packages I have. This one useinnertheme[shadow]{rounded} I put % and gave the pure rectangle, thanks again.

    – user178403
    yesterday
















5














The author is already in a box, you just don't see it because the default colour is white. You can change the colour like the following:



documentclass[xcolor={dvipsnames}]{beamer}

author{names}
setbeamercolor{author}{bg=red}

begin{document}

begin{frame}
titlepage
end{frame}

end{document}





share|improve this answer
























  • Thank you samcarter! Just one question, how to nivelate the level of red color? It's very intense and does not let distinguish the author text

    – user178403
    yesterday






  • 2





    @user178403 Either mix it with white (red!50!white) or use another colour you like, I just used it as an example.

    – samcarter
    yesterday











  • got it, is there a way to remove the gray shadow that has at the bottom of the block?

    – user178403
    yesterday






  • 1





    @user178403 Per default there is no gray shadow. You will have to make a MWE that allows us to reproduce your problem.

    – samcarter
    yesterday











  • I've fixed, it has to do with all the packages I have. This one useinnertheme[shadow]{rounded} I put % and gave the pure rectangle, thanks again.

    – user178403
    yesterday














5












5








5







The author is already in a box, you just don't see it because the default colour is white. You can change the colour like the following:



documentclass[xcolor={dvipsnames}]{beamer}

author{names}
setbeamercolor{author}{bg=red}

begin{document}

begin{frame}
titlepage
end{frame}

end{document}





share|improve this answer













The author is already in a box, you just don't see it because the default colour is white. You can change the colour like the following:



documentclass[xcolor={dvipsnames}]{beamer}

author{names}
setbeamercolor{author}{bg=red}

begin{document}

begin{frame}
titlepage
end{frame}

end{document}






share|improve this answer












share|improve this answer



share|improve this answer










answered yesterday









samcartersamcarter

92.9k7105300




92.9k7105300













  • Thank you samcarter! Just one question, how to nivelate the level of red color? It's very intense and does not let distinguish the author text

    – user178403
    yesterday






  • 2





    @user178403 Either mix it with white (red!50!white) or use another colour you like, I just used it as an example.

    – samcarter
    yesterday











  • got it, is there a way to remove the gray shadow that has at the bottom of the block?

    – user178403
    yesterday






  • 1





    @user178403 Per default there is no gray shadow. You will have to make a MWE that allows us to reproduce your problem.

    – samcarter
    yesterday











  • I've fixed, it has to do with all the packages I have. This one useinnertheme[shadow]{rounded} I put % and gave the pure rectangle, thanks again.

    – user178403
    yesterday



















  • Thank you samcarter! Just one question, how to nivelate the level of red color? It's very intense and does not let distinguish the author text

    – user178403
    yesterday






  • 2





    @user178403 Either mix it with white (red!50!white) or use another colour you like, I just used it as an example.

    – samcarter
    yesterday











  • got it, is there a way to remove the gray shadow that has at the bottom of the block?

    – user178403
    yesterday






  • 1





    @user178403 Per default there is no gray shadow. You will have to make a MWE that allows us to reproduce your problem.

    – samcarter
    yesterday











  • I've fixed, it has to do with all the packages I have. This one useinnertheme[shadow]{rounded} I put % and gave the pure rectangle, thanks again.

    – user178403
    yesterday

















Thank you samcarter! Just one question, how to nivelate the level of red color? It's very intense and does not let distinguish the author text

– user178403
yesterday





Thank you samcarter! Just one question, how to nivelate the level of red color? It's very intense and does not let distinguish the author text

– user178403
yesterday




2




2





@user178403 Either mix it with white (red!50!white) or use another colour you like, I just used it as an example.

– samcarter
yesterday





@user178403 Either mix it with white (red!50!white) or use another colour you like, I just used it as an example.

– samcarter
yesterday













got it, is there a way to remove the gray shadow that has at the bottom of the block?

– user178403
yesterday





got it, is there a way to remove the gray shadow that has at the bottom of the block?

– user178403
yesterday




1




1





@user178403 Per default there is no gray shadow. You will have to make a MWE that allows us to reproduce your problem.

– samcarter
yesterday





@user178403 Per default there is no gray shadow. You will have to make a MWE that allows us to reproduce your problem.

– samcarter
yesterday













I've fixed, it has to do with all the packages I have. This one useinnertheme[shadow]{rounded} I put % and gave the pure rectangle, thanks again.

– user178403
yesterday





I've fixed, it has to do with all the packages I have. This one useinnertheme[shadow]{rounded} I put % and gave the pure rectangle, thanks again.

– user178403
yesterday


















draft saved

draft discarded




















































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%2f481130%2fis-it-possible-to-put-a-rectangle-as-background-in-the-author-section%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

Category:香港粉麵

List *all* the tuples!

Channel [V]