Increasing the Size of Beamer FooterChanging the default specifications of theme in beamerBeamer Font Size...

A function which translates a sentence to title-case

Why don't electromagnetic waves interact with each other?

What do you call a Matrix-like slowdown and camera movement effect?

I see my dog run

If Manufacturer spice model and Datasheet give different values which should I use?

How can bays and straits be determined in a procedurally generated map?

"You are your self first supporter", a more proper way to say it

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

A Journey Through Space and Time

Japan - Plan around max visa duration

whey we use polarized capacitor?

What is the command to reset a PC without deleting any files

How to type dʒ symbol (IPA) on Mac?

Why has Russell's definition of numbers using equivalence classes been finally abandoned? ( If it has actually been abandoned).

Book about a traveler who helps planets in need

What is the offset in a seaplane's hull?

GPS Rollover on Android Smartphones

What makes Graph invariants so useful/important?

Shell script can be run only with sh command

Modification to Chariots for Heavy Cavalry Analogue for 4-armed race

Why is "Reports" in sentence down without "The"

Is there really no realistic way for a skeleton monster to move around without magic?

How is it possible to have an ability score that is less than 3?

What would the Romans have called "sorcery"?



Increasing the Size of Beamer Footer


Changing the default specifications of theme in beamerBeamer Font Size for FooterIncreasing the height of footline in a beamer slideCustomize footer in the Szeged Beamer themeIncreasing the height of the Beamer footlinemodify beamer footer portionsIncreasing the size of the navigation sidebar text in Beamer (Berkeley theme)Basic Beamer FooterLaTeX beamer: pagenumbering appendixProblem with beamer columnsHow reduce size the header in beamer?













5















I work in Beamer extensively (specifically the Madrid theme). Sometimes, my "title" is quite long. Beamer puts this title at the bottom, but when it's too long it cuts it off. I'd really like to know how to increase the size of the bottom middle rectangular footer.
enter image description here



Here's the code (sorry for all of the packages and commands):



documentclass[t]{beamer} %Add "mathserif" to script math lettering. "t" places all text to start at the top of each slide
usetheme{Madrid}

%Packages
usepackage{amsmath} %Math mode
usepackage{amssymb} %Math mode
usepackage{commath}
usepackage{graphicx} %Including pictures
usepackage{color} %Define colours
usepackage{setspace} %Enables double-spacing/variable spacing
usepackage{pgfplots} %Draw graphs
usepackage{upgreek} %Insert theta symbol as unitalicized
usepackage[version=3]{mhchem} %Chemistry equation mode ce{}
usepackage[export]{adjustbox} %Place black borders around images
usepackage{scrextend} %Used to change font size
usepackage{caption} %Used to utilize * in caption function
usepackage{subfig} %Used to place figures side-by-side with sub-captions
usepackage{siunitx} %SI Units (+ scientific notation)
usepackage{cancel}
usepackage{fancybox}
%usepackage{enumitem} %Making lists
%usepackage[english]{babel} %Lists with letters

%Erases Beamer Navigation Symbols on the bottom left
setbeamertemplate{navigation symbols}{}
%setbeamertemplate{footline}{}
captionsetup[subfigure]{labelformat=empty}

%Defined Colours
definecolor{orangered}{RGB}{255,69,0}
definecolor{darkgreen}{RGB}{0,100,0}
definecolor{firebrick}{RGB}{178, 34, 34}
definecolor{navy}{RGB}{0,0,128}
definecolor{lightsteelblue}{RGB}{176,196,222}
definecolor{steelblue}{RGB}{70,130,180}
definecolor{darkslateblue}{RGB}{72, 61, 139}
definecolor{forestgreen}{RGB}{34, 139, 34}
definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}
setbeamerfont*{itemize/enumerate body}{size=normalsize}
setbeamerfont*{itemize/enumerate subbody}{parent=itemize/enumerate body}
setbeamerfont*{itemize/enumerate subsubbody}{parent=itemize/enumerate body}

%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document}
%Slide 1
maketitle
end{document}









share|improve this question

























  • If you only want to show the title in footline and doesn't mind it be shorter, you can use title optional parameter. It's used in head and footlines: title[a shorter title]{the long long long title}. This way you don't need to change footline dimensions. Same optional parameter can be used for other commands like author, section, subsection, ...

    – Ignasi
    Dec 2 '15 at 16:07













  • Hey thanks a ton that actually is super useful to know. Thanks!

    – Dan P.
    Dec 12 '15 at 19:23
















5















I work in Beamer extensively (specifically the Madrid theme). Sometimes, my "title" is quite long. Beamer puts this title at the bottom, but when it's too long it cuts it off. I'd really like to know how to increase the size of the bottom middle rectangular footer.
enter image description here



Here's the code (sorry for all of the packages and commands):



documentclass[t]{beamer} %Add "mathserif" to script math lettering. "t" places all text to start at the top of each slide
usetheme{Madrid}

%Packages
usepackage{amsmath} %Math mode
usepackage{amssymb} %Math mode
usepackage{commath}
usepackage{graphicx} %Including pictures
usepackage{color} %Define colours
usepackage{setspace} %Enables double-spacing/variable spacing
usepackage{pgfplots} %Draw graphs
usepackage{upgreek} %Insert theta symbol as unitalicized
usepackage[version=3]{mhchem} %Chemistry equation mode ce{}
usepackage[export]{adjustbox} %Place black borders around images
usepackage{scrextend} %Used to change font size
usepackage{caption} %Used to utilize * in caption function
usepackage{subfig} %Used to place figures side-by-side with sub-captions
usepackage{siunitx} %SI Units (+ scientific notation)
usepackage{cancel}
usepackage{fancybox}
%usepackage{enumitem} %Making lists
%usepackage[english]{babel} %Lists with letters

%Erases Beamer Navigation Symbols on the bottom left
setbeamertemplate{navigation symbols}{}
%setbeamertemplate{footline}{}
captionsetup[subfigure]{labelformat=empty}

%Defined Colours
definecolor{orangered}{RGB}{255,69,0}
definecolor{darkgreen}{RGB}{0,100,0}
definecolor{firebrick}{RGB}{178, 34, 34}
definecolor{navy}{RGB}{0,0,128}
definecolor{lightsteelblue}{RGB}{176,196,222}
definecolor{steelblue}{RGB}{70,130,180}
definecolor{darkslateblue}{RGB}{72, 61, 139}
definecolor{forestgreen}{RGB}{34, 139, 34}
definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}
setbeamerfont*{itemize/enumerate body}{size=normalsize}
setbeamerfont*{itemize/enumerate subbody}{parent=itemize/enumerate body}
setbeamerfont*{itemize/enumerate subsubbody}{parent=itemize/enumerate body}

%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document}
%Slide 1
maketitle
end{document}









share|improve this question

























  • If you only want to show the title in footline and doesn't mind it be shorter, you can use title optional parameter. It's used in head and footlines: title[a shorter title]{the long long long title}. This way you don't need to change footline dimensions. Same optional parameter can be used for other commands like author, section, subsection, ...

    – Ignasi
    Dec 2 '15 at 16:07













  • Hey thanks a ton that actually is super useful to know. Thanks!

    – Dan P.
    Dec 12 '15 at 19:23














5












5








5


2






I work in Beamer extensively (specifically the Madrid theme). Sometimes, my "title" is quite long. Beamer puts this title at the bottom, but when it's too long it cuts it off. I'd really like to know how to increase the size of the bottom middle rectangular footer.
enter image description here



Here's the code (sorry for all of the packages and commands):



documentclass[t]{beamer} %Add "mathserif" to script math lettering. "t" places all text to start at the top of each slide
usetheme{Madrid}

%Packages
usepackage{amsmath} %Math mode
usepackage{amssymb} %Math mode
usepackage{commath}
usepackage{graphicx} %Including pictures
usepackage{color} %Define colours
usepackage{setspace} %Enables double-spacing/variable spacing
usepackage{pgfplots} %Draw graphs
usepackage{upgreek} %Insert theta symbol as unitalicized
usepackage[version=3]{mhchem} %Chemistry equation mode ce{}
usepackage[export]{adjustbox} %Place black borders around images
usepackage{scrextend} %Used to change font size
usepackage{caption} %Used to utilize * in caption function
usepackage{subfig} %Used to place figures side-by-side with sub-captions
usepackage{siunitx} %SI Units (+ scientific notation)
usepackage{cancel}
usepackage{fancybox}
%usepackage{enumitem} %Making lists
%usepackage[english]{babel} %Lists with letters

%Erases Beamer Navigation Symbols on the bottom left
setbeamertemplate{navigation symbols}{}
%setbeamertemplate{footline}{}
captionsetup[subfigure]{labelformat=empty}

%Defined Colours
definecolor{orangered}{RGB}{255,69,0}
definecolor{darkgreen}{RGB}{0,100,0}
definecolor{firebrick}{RGB}{178, 34, 34}
definecolor{navy}{RGB}{0,0,128}
definecolor{lightsteelblue}{RGB}{176,196,222}
definecolor{steelblue}{RGB}{70,130,180}
definecolor{darkslateblue}{RGB}{72, 61, 139}
definecolor{forestgreen}{RGB}{34, 139, 34}
definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}
setbeamerfont*{itemize/enumerate body}{size=normalsize}
setbeamerfont*{itemize/enumerate subbody}{parent=itemize/enumerate body}
setbeamerfont*{itemize/enumerate subsubbody}{parent=itemize/enumerate body}

%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document}
%Slide 1
maketitle
end{document}









share|improve this question
















I work in Beamer extensively (specifically the Madrid theme). Sometimes, my "title" is quite long. Beamer puts this title at the bottom, but when it's too long it cuts it off. I'd really like to know how to increase the size of the bottom middle rectangular footer.
enter image description here



Here's the code (sorry for all of the packages and commands):



documentclass[t]{beamer} %Add "mathserif" to script math lettering. "t" places all text to start at the top of each slide
usetheme{Madrid}

%Packages
usepackage{amsmath} %Math mode
usepackage{amssymb} %Math mode
usepackage{commath}
usepackage{graphicx} %Including pictures
usepackage{color} %Define colours
usepackage{setspace} %Enables double-spacing/variable spacing
usepackage{pgfplots} %Draw graphs
usepackage{upgreek} %Insert theta symbol as unitalicized
usepackage[version=3]{mhchem} %Chemistry equation mode ce{}
usepackage[export]{adjustbox} %Place black borders around images
usepackage{scrextend} %Used to change font size
usepackage{caption} %Used to utilize * in caption function
usepackage{subfig} %Used to place figures side-by-side with sub-captions
usepackage{siunitx} %SI Units (+ scientific notation)
usepackage{cancel}
usepackage{fancybox}
%usepackage{enumitem} %Making lists
%usepackage[english]{babel} %Lists with letters

%Erases Beamer Navigation Symbols on the bottom left
setbeamertemplate{navigation symbols}{}
%setbeamertemplate{footline}{}
captionsetup[subfigure]{labelformat=empty}

%Defined Colours
definecolor{orangered}{RGB}{255,69,0}
definecolor{darkgreen}{RGB}{0,100,0}
definecolor{firebrick}{RGB}{178, 34, 34}
definecolor{navy}{RGB}{0,0,128}
definecolor{lightsteelblue}{RGB}{176,196,222}
definecolor{steelblue}{RGB}{70,130,180}
definecolor{darkslateblue}{RGB}{72, 61, 139}
definecolor{forestgreen}{RGB}{34, 139, 34}
definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}
setbeamerfont*{itemize/enumerate body}{size=normalsize}
setbeamerfont*{itemize/enumerate subbody}{parent=itemize/enumerate body}
setbeamerfont*{itemize/enumerate subsubbody}{parent=itemize/enumerate body}

%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document}
%Slide 1
maketitle
end{document}






beamer






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 2 '15 at 15:50









Ignasi

95.8k4176320




95.8k4176320










asked Dec 2 '15 at 15:09









Dan P.Dan P.

454




454













  • If you only want to show the title in footline and doesn't mind it be shorter, you can use title optional parameter. It's used in head and footlines: title[a shorter title]{the long long long title}. This way you don't need to change footline dimensions. Same optional parameter can be used for other commands like author, section, subsection, ...

    – Ignasi
    Dec 2 '15 at 16:07













  • Hey thanks a ton that actually is super useful to know. Thanks!

    – Dan P.
    Dec 12 '15 at 19:23



















  • If you only want to show the title in footline and doesn't mind it be shorter, you can use title optional parameter. It's used in head and footlines: title[a shorter title]{the long long long title}. This way you don't need to change footline dimensions. Same optional parameter can be used for other commands like author, section, subsection, ...

    – Ignasi
    Dec 2 '15 at 16:07













  • Hey thanks a ton that actually is super useful to know. Thanks!

    – Dan P.
    Dec 12 '15 at 19:23

















If you only want to show the title in footline and doesn't mind it be shorter, you can use title optional parameter. It's used in head and footlines: title[a shorter title]{the long long long title}. This way you don't need to change footline dimensions. Same optional parameter can be used for other commands like author, section, subsection, ...

– Ignasi
Dec 2 '15 at 16:07







If you only want to show the title in footline and doesn't mind it be shorter, you can use title optional parameter. It's used in head and footlines: title[a shorter title]{the long long long title}. This way you don't need to change footline dimensions. Same optional parameter can be used for other commands like author, section, subsection, ...

– Ignasi
Dec 2 '15 at 16:07















Hey thanks a ton that actually is super useful to know. Thanks!

– Dan P.
Dec 12 '15 at 19:23





Hey thanks a ton that actually is super useful to know. Thanks!

– Dan P.
Dec 12 '15 at 19:23










1 Answer
1






active

oldest

votes


















5














The footline template used in beamer's Madrid theme is taken from the infolines outer theme and is defined by the following code:



defbeamertemplate*{footline}{infolines theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}


There are three beamercolorboxes with the width of one third of the paperwidth each. If you want to modify the width of the boxes you can define a different template by copying this code in your file and change the wd parameters. You can choose the widths according to your needs, but you shoud make sure that the their sum is equal to paperwidth. Moreover, you must enclose the definition between makeatletter and makeatother because @ is used in the code. An example is given by the following MWE (where the unused packaged of your example have been removed).



documentclass[t]{beamer}
usetheme{Madrid}

definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}

makeatletter
defbeamertemplate*{footline}{Dan P theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.6paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}
makeatother
%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document} %Slide 1
maketitle
end{document}


Output






share|improve this answer
























  • This completely solved the problem! Much appreciated thanks!

    – Dan P.
    Dec 12 '15 at 19:23












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%2f281172%2fincreasing-the-size-of-beamer-footer%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 footline template used in beamer's Madrid theme is taken from the infolines outer theme and is defined by the following code:



defbeamertemplate*{footline}{infolines theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}


There are three beamercolorboxes with the width of one third of the paperwidth each. If you want to modify the width of the boxes you can define a different template by copying this code in your file and change the wd parameters. You can choose the widths according to your needs, but you shoud make sure that the their sum is equal to paperwidth. Moreover, you must enclose the definition between makeatletter and makeatother because @ is used in the code. An example is given by the following MWE (where the unused packaged of your example have been removed).



documentclass[t]{beamer}
usetheme{Madrid}

definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}

makeatletter
defbeamertemplate*{footline}{Dan P theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.6paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}
makeatother
%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document} %Slide 1
maketitle
end{document}


Output






share|improve this answer
























  • This completely solved the problem! Much appreciated thanks!

    – Dan P.
    Dec 12 '15 at 19:23
















5














The footline template used in beamer's Madrid theme is taken from the infolines outer theme and is defined by the following code:



defbeamertemplate*{footline}{infolines theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}


There are three beamercolorboxes with the width of one third of the paperwidth each. If you want to modify the width of the boxes you can define a different template by copying this code in your file and change the wd parameters. You can choose the widths according to your needs, but you shoud make sure that the their sum is equal to paperwidth. Moreover, you must enclose the definition between makeatletter and makeatother because @ is used in the code. An example is given by the following MWE (where the unused packaged of your example have been removed).



documentclass[t]{beamer}
usetheme{Madrid}

definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}

makeatletter
defbeamertemplate*{footline}{Dan P theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.6paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}
makeatother
%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document} %Slide 1
maketitle
end{document}


Output






share|improve this answer
























  • This completely solved the problem! Much appreciated thanks!

    – Dan P.
    Dec 12 '15 at 19:23














5












5








5







The footline template used in beamer's Madrid theme is taken from the infolines outer theme and is defined by the following code:



defbeamertemplate*{footline}{infolines theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}


There are three beamercolorboxes with the width of one third of the paperwidth each. If you want to modify the width of the boxes you can define a different template by copying this code in your file and change the wd parameters. You can choose the widths according to your needs, but you shoud make sure that the their sum is equal to paperwidth. Moreover, you must enclose the definition between makeatletter and makeatother because @ is used in the code. An example is given by the following MWE (where the unused packaged of your example have been removed).



documentclass[t]{beamer}
usetheme{Madrid}

definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}

makeatletter
defbeamertemplate*{footline}{Dan P theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.6paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}
makeatother
%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document} %Slide 1
maketitle
end{document}


Output






share|improve this answer













The footline template used in beamer's Madrid theme is taken from the infolines outer theme and is defined by the following code:



defbeamertemplate*{footline}{infolines theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.333333paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}


There are three beamercolorboxes with the width of one third of the paperwidth each. If you want to modify the width of the boxes you can define a different template by copying this code in your file and change the wd parameters. You can choose the widths according to your needs, but you shoud make sure that the their sum is equal to paperwidth. Moreover, you must enclose the definition between makeatletter and makeatother because @ is used in the code. An example is given by the following MWE (where the unused packaged of your example have been removed).



documentclass[t]{beamer}
usetheme{Madrid}

definecolor{Gold}{RGB}{218,165,32}

%Defined Colour Theme and List Sizing
setbeamercolor{structure}{fg = Gold}
setbeamertemplate{navigation symbols}{}

makeatletter
defbeamertemplate*{footline}{Dan P theme}
{
leavevmode%
hbox{%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthorexpandafterbeamer@ifemptyexpandafter{beamer@shortinstitute}{}{~~(insertshortinstitute)}
end{beamercolorbox}%
begin{beamercolorbox}[wd=.6paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitle
end{beamercolorbox}%
begin{beamercolorbox}[wd=.2paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
usebeamerfont{date in head/foot}insertshortdate{}hspace*{2em}
insertframenumber{} / inserttotalframenumberhspace*{2ex}
end{beamercolorbox}}%
vskip0pt%
}
makeatother
%Opening Title Page
title{Chapter 7 - Absolute Value and Reciprocal Functions}
subtitle{Section 7.3 - Absolute Value Equations}
date{}

begin{document} %Slide 1
maketitle
end{document}


Output







share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 2 '15 at 15:58









LucaDLucaD

1,14179




1,14179













  • This completely solved the problem! Much appreciated thanks!

    – Dan P.
    Dec 12 '15 at 19:23



















  • This completely solved the problem! Much appreciated thanks!

    – Dan P.
    Dec 12 '15 at 19:23

















This completely solved the problem! Much appreciated thanks!

– Dan P.
Dec 12 '15 at 19:23





This completely solved the problem! Much appreciated thanks!

– Dan P.
Dec 12 '15 at 19:23


















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%2f281172%2fincreasing-the-size-of-beamer-footer%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

Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...