How can I customize a theme independent note page? (beamer)












0















I would like to create a custom note page in beamer which sould look like this



enter image description here



However, the layout of this note page will vary greatly depending on the current theme settings. If I am to change the theme settings the note page will change significantly, the note page layout is likely to change as well. For instance if I am to change the left and right text margins to 15mm, the page will look like this



enter image description here



I think that most of this is due to the behavior of columns environment. I mean that it inserts a space automatically between the multiple columns which is usually what is desired. If I am able to set the distance between two columns to very small amount (such as 3mm), then the empty space in the pic above will be removed. However, I still want to achieve many things




  • The left edge of the slide preview should have 0mm margin with respect to the left of the page

  • The height of the rotated preview slide should stretch from the very top of the page to the very bottom while maintaining the aspect ratio. This would leave an unknown amount of horizontal space for the next column. However, I still do not know how to calculate this space in order to properly determine the dimensions of the adjacent columns

  • The margin of the insertnote contents with respect to the left of the page should be have an exact value such as 5mm. Also, the top margins of insertnote should have pre-specified value such as 3mm


Even though I got very close to the requirements above, I still do not how to precisely achieve them. Further, it would be very great bonus if insertnote contents could be automatically shrunk to fit in their columns (in case they did not with their original size).



documentclass[aspectratio=169, xcolor={x11names}]{beamer}

setbeameroption{show notes}
newcommand{itemShowMoreContents}{item<+->}
newcommand{presentUncoverMoreContents}{uncover<+->}



usecolortheme{wolverine}
useoutertheme{split}
useinnertheme{rectangles}

setbeamersize{text margin left=2mm, text margin right=2mm}

newlength{sidebarWidth}
setlength{sidebarWidth}{0.1paperwidth}

setbeamersize{sidebar width left=sidebarWidth, sidebar width right=0cm}



% ===== Cuztomize the note page =====

newlength{widthNotePageSlideMax}
setlength{widthNotePageSlideMax}{0.2paperwidth}
newlength{widthNotePageContents}
setlength{widthNotePageContents}{0.6paperwidth}
setbeamertemplate{note page}{

begin{columns}

% The slide figure
column[t]{widthNotePageSlideMax}

adjustbox{rotate=90, max height=0.98paperheight, frame}{insertslideintonotes{1}}

column[t]{widthNotePageContents}
% The Notes
justifying
insertnote

end{columns}

}
setbeamerfont{note page}{size=normalsize}


usepackage{ragged2e}
usepackage{adjustbox}
usepackage{blindtext}
setbeamersize{description width=0mm}

begin{document}

begin{frame}{Showing Contents Gradually without Alert}

begin{block}{Why is induction motor very common}
%
presentUncoverMoreContents{Induction motors are very practical for the following reasons}

begin{description}
itemShowMoreContents[Rigid] Rigid
itemShowMoreContents[Cheap] Cheap
note<+>{blindlistlist[1]{enumerate} blindtext} \
itemShowMoreContents[Low Maintenance] Low Maintenance
itemShowMoreContents[Self-Starting] Self-starting
itemShowMoreContents[No Excitation Needed] No Excitation Needed
itemShowMoreContents[Something goes here] extra contents
end{description}

vspace{fill}

More content

end{block}

end{frame}

end{document}








share



























    0















    I would like to create a custom note page in beamer which sould look like this



    enter image description here



    However, the layout of this note page will vary greatly depending on the current theme settings. If I am to change the theme settings the note page will change significantly, the note page layout is likely to change as well. For instance if I am to change the left and right text margins to 15mm, the page will look like this



    enter image description here



    I think that most of this is due to the behavior of columns environment. I mean that it inserts a space automatically between the multiple columns which is usually what is desired. If I am able to set the distance between two columns to very small amount (such as 3mm), then the empty space in the pic above will be removed. However, I still want to achieve many things




    • The left edge of the slide preview should have 0mm margin with respect to the left of the page

    • The height of the rotated preview slide should stretch from the very top of the page to the very bottom while maintaining the aspect ratio. This would leave an unknown amount of horizontal space for the next column. However, I still do not know how to calculate this space in order to properly determine the dimensions of the adjacent columns

    • The margin of the insertnote contents with respect to the left of the page should be have an exact value such as 5mm. Also, the top margins of insertnote should have pre-specified value such as 3mm


    Even though I got very close to the requirements above, I still do not how to precisely achieve them. Further, it would be very great bonus if insertnote contents could be automatically shrunk to fit in their columns (in case they did not with their original size).



    documentclass[aspectratio=169, xcolor={x11names}]{beamer}

    setbeameroption{show notes}
    newcommand{itemShowMoreContents}{item<+->}
    newcommand{presentUncoverMoreContents}{uncover<+->}



    usecolortheme{wolverine}
    useoutertheme{split}
    useinnertheme{rectangles}

    setbeamersize{text margin left=2mm, text margin right=2mm}

    newlength{sidebarWidth}
    setlength{sidebarWidth}{0.1paperwidth}

    setbeamersize{sidebar width left=sidebarWidth, sidebar width right=0cm}



    % ===== Cuztomize the note page =====

    newlength{widthNotePageSlideMax}
    setlength{widthNotePageSlideMax}{0.2paperwidth}
    newlength{widthNotePageContents}
    setlength{widthNotePageContents}{0.6paperwidth}
    setbeamertemplate{note page}{

    begin{columns}

    % The slide figure
    column[t]{widthNotePageSlideMax}

    adjustbox{rotate=90, max height=0.98paperheight, frame}{insertslideintonotes{1}}

    column[t]{widthNotePageContents}
    % The Notes
    justifying
    insertnote

    end{columns}

    }
    setbeamerfont{note page}{size=normalsize}


    usepackage{ragged2e}
    usepackage{adjustbox}
    usepackage{blindtext}
    setbeamersize{description width=0mm}

    begin{document}

    begin{frame}{Showing Contents Gradually without Alert}

    begin{block}{Why is induction motor very common}
    %
    presentUncoverMoreContents{Induction motors are very practical for the following reasons}

    begin{description}
    itemShowMoreContents[Rigid] Rigid
    itemShowMoreContents[Cheap] Cheap
    note<+>{blindlistlist[1]{enumerate} blindtext} \
    itemShowMoreContents[Low Maintenance] Low Maintenance
    itemShowMoreContents[Self-Starting] Self-starting
    itemShowMoreContents[No Excitation Needed] No Excitation Needed
    itemShowMoreContents[Something goes here] extra contents
    end{description}

    vspace{fill}

    More content

    end{block}

    end{frame}

    end{document}








    share

























      0












      0








      0








      I would like to create a custom note page in beamer which sould look like this



      enter image description here



      However, the layout of this note page will vary greatly depending on the current theme settings. If I am to change the theme settings the note page will change significantly, the note page layout is likely to change as well. For instance if I am to change the left and right text margins to 15mm, the page will look like this



      enter image description here



      I think that most of this is due to the behavior of columns environment. I mean that it inserts a space automatically between the multiple columns which is usually what is desired. If I am able to set the distance between two columns to very small amount (such as 3mm), then the empty space in the pic above will be removed. However, I still want to achieve many things




      • The left edge of the slide preview should have 0mm margin with respect to the left of the page

      • The height of the rotated preview slide should stretch from the very top of the page to the very bottom while maintaining the aspect ratio. This would leave an unknown amount of horizontal space for the next column. However, I still do not know how to calculate this space in order to properly determine the dimensions of the adjacent columns

      • The margin of the insertnote contents with respect to the left of the page should be have an exact value such as 5mm. Also, the top margins of insertnote should have pre-specified value such as 3mm


      Even though I got very close to the requirements above, I still do not how to precisely achieve them. Further, it would be very great bonus if insertnote contents could be automatically shrunk to fit in their columns (in case they did not with their original size).



      documentclass[aspectratio=169, xcolor={x11names}]{beamer}

      setbeameroption{show notes}
      newcommand{itemShowMoreContents}{item<+->}
      newcommand{presentUncoverMoreContents}{uncover<+->}



      usecolortheme{wolverine}
      useoutertheme{split}
      useinnertheme{rectangles}

      setbeamersize{text margin left=2mm, text margin right=2mm}

      newlength{sidebarWidth}
      setlength{sidebarWidth}{0.1paperwidth}

      setbeamersize{sidebar width left=sidebarWidth, sidebar width right=0cm}



      % ===== Cuztomize the note page =====

      newlength{widthNotePageSlideMax}
      setlength{widthNotePageSlideMax}{0.2paperwidth}
      newlength{widthNotePageContents}
      setlength{widthNotePageContents}{0.6paperwidth}
      setbeamertemplate{note page}{

      begin{columns}

      % The slide figure
      column[t]{widthNotePageSlideMax}

      adjustbox{rotate=90, max height=0.98paperheight, frame}{insertslideintonotes{1}}

      column[t]{widthNotePageContents}
      % The Notes
      justifying
      insertnote

      end{columns}

      }
      setbeamerfont{note page}{size=normalsize}


      usepackage{ragged2e}
      usepackage{adjustbox}
      usepackage{blindtext}
      setbeamersize{description width=0mm}

      begin{document}

      begin{frame}{Showing Contents Gradually without Alert}

      begin{block}{Why is induction motor very common}
      %
      presentUncoverMoreContents{Induction motors are very practical for the following reasons}

      begin{description}
      itemShowMoreContents[Rigid] Rigid
      itemShowMoreContents[Cheap] Cheap
      note<+>{blindlistlist[1]{enumerate} blindtext} \
      itemShowMoreContents[Low Maintenance] Low Maintenance
      itemShowMoreContents[Self-Starting] Self-starting
      itemShowMoreContents[No Excitation Needed] No Excitation Needed
      itemShowMoreContents[Something goes here] extra contents
      end{description}

      vspace{fill}

      More content

      end{block}

      end{frame}

      end{document}








      share














      I would like to create a custom note page in beamer which sould look like this



      enter image description here



      However, the layout of this note page will vary greatly depending on the current theme settings. If I am to change the theme settings the note page will change significantly, the note page layout is likely to change as well. For instance if I am to change the left and right text margins to 15mm, the page will look like this



      enter image description here



      I think that most of this is due to the behavior of columns environment. I mean that it inserts a space automatically between the multiple columns which is usually what is desired. If I am able to set the distance between two columns to very small amount (such as 3mm), then the empty space in the pic above will be removed. However, I still want to achieve many things




      • The left edge of the slide preview should have 0mm margin with respect to the left of the page

      • The height of the rotated preview slide should stretch from the very top of the page to the very bottom while maintaining the aspect ratio. This would leave an unknown amount of horizontal space for the next column. However, I still do not know how to calculate this space in order to properly determine the dimensions of the adjacent columns

      • The margin of the insertnote contents with respect to the left of the page should be have an exact value such as 5mm. Also, the top margins of insertnote should have pre-specified value such as 3mm


      Even though I got very close to the requirements above, I still do not how to precisely achieve them. Further, it would be very great bonus if insertnote contents could be automatically shrunk to fit in their columns (in case they did not with their original size).



      documentclass[aspectratio=169, xcolor={x11names}]{beamer}

      setbeameroption{show notes}
      newcommand{itemShowMoreContents}{item<+->}
      newcommand{presentUncoverMoreContents}{uncover<+->}



      usecolortheme{wolverine}
      useoutertheme{split}
      useinnertheme{rectangles}

      setbeamersize{text margin left=2mm, text margin right=2mm}

      newlength{sidebarWidth}
      setlength{sidebarWidth}{0.1paperwidth}

      setbeamersize{sidebar width left=sidebarWidth, sidebar width right=0cm}



      % ===== Cuztomize the note page =====

      newlength{widthNotePageSlideMax}
      setlength{widthNotePageSlideMax}{0.2paperwidth}
      newlength{widthNotePageContents}
      setlength{widthNotePageContents}{0.6paperwidth}
      setbeamertemplate{note page}{

      begin{columns}

      % The slide figure
      column[t]{widthNotePageSlideMax}

      adjustbox{rotate=90, max height=0.98paperheight, frame}{insertslideintonotes{1}}

      column[t]{widthNotePageContents}
      % The Notes
      justifying
      insertnote

      end{columns}

      }
      setbeamerfont{note page}{size=normalsize}


      usepackage{ragged2e}
      usepackage{adjustbox}
      usepackage{blindtext}
      setbeamersize{description width=0mm}

      begin{document}

      begin{frame}{Showing Contents Gradually without Alert}

      begin{block}{Why is induction motor very common}
      %
      presentUncoverMoreContents{Induction motors are very practical for the following reasons}

      begin{description}
      itemShowMoreContents[Rigid] Rigid
      itemShowMoreContents[Cheap] Cheap
      note<+>{blindlistlist[1]{enumerate} blindtext} \
      itemShowMoreContents[Low Maintenance] Low Maintenance
      itemShowMoreContents[Self-Starting] Self-starting
      itemShowMoreContents[No Excitation Needed] No Excitation Needed
      itemShowMoreContents[Something goes here] extra contents
      end{description}

      vspace{fill}

      More content

      end{block}

      end{frame}

      end{document}






      beamer margins columns





      share












      share










      share



      share










      asked 6 mins ago









      Al-Motasem AldaoudeyehAl-Motasem Aldaoudeyeh

      1,673413




      1,673413






















          0






          active

          oldest

          votes











          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%2f479566%2fhow-can-i-customize-a-theme-independent-note-page-beamer%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          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%2f479566%2fhow-can-i-customize-a-theme-independent-note-page-beamer%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

          サソリ

          広島県道265号伴広島線

          Setup Asymptote in Texstudio