Failed to properly set size of tikzpicture in beamerposterTikZ add frame to a pictureHow to define the...

3.5% Interest Student Loan or use all of my savings on Tuition?

It doesn't matter the side you see it

How to get the first element while continue streaming?

How do you say “my friend is throwing a party, do you wanna come?” in german

Where is the fallacy here?

Formatting a table to look nice

In which way proportional valves are controlled solely by current?

Book about a time-travel war fought by computers

What is the minimum amount of skill points per HD?

Should I use HTTPS on a domain that will only be used for redirection?

Can we carry rice to Japan?

Would the melodic leap of the opening phrase of Mozart's K545 be considered dissonant?

Must 40/100G uplink ports on a 10G switch be connected to another switch?

Plagiarism of code by other PhD student

A bug in Excel? Conditional formatting for marking duplicates also highlights unique value

Are small insurances worth it

Reason why dimensional travelling would be restricted

Create chunks from an array

How to fix my table, centering of columns

Can a space-faring robot still function over a billion years?

The need of reserving one's ability in job interviews

Do AL rules let me pick different starting equipment?

How to kill a localhost:8080

Is there a way to find out the age of climbing ropes?



Failed to properly set size of tikzpicture in beamerposter


TikZ add frame to a pictureHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?use circuitikz picture inside tikzpictureTikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to draw a square and its diagonals with arrows?How to draw a -latex arrow inside a node













0















I tried to insert a TikZ picture provided below into a beamerposter document.
Normal picture



It is generated by the following code (except the arrow in the middle of the "incident beam", it's an excessive detail):



begin{tikzpicture}
% axes and origin
coordinate (O) at (0, 0);
draw node[anchor=north east] {$O$};
draw [->] (-3,0)--(3,0) node [pos=0.98, below] {$x$};
draw [->] (0,-1)--(0,3) node [pos=0.98, left] {$z$};
% orts
draw [thick, ->] (O)--(1,0) node[pos=1, below] {$vc e_x$};
draw [thick, ->] (O)--(0,1) node[pos=1, left] {$vc e_z$};
% vector k and its angle chi
coordinate (K) at ({2.6*sin(30)},{2.6*cos(30)});
draw [thick, ->] (O)--(K) node[pos=1, right] {$vc k$};
draw ([shift=(60:0.5)] O) arc (60:90:0.5) node[pos=0.35, above] {$chi$};
% k projections
coordinate (Kx) at (K |- O);
coordinate (Kz) at (K -| O);
draw [thick, ->](O)--(Kx) node[pos=1.15, below] {$vc k_x$};
draw [thick, ->](O)--(Kz) node[pos=1, left] {$vc k_z$};
draw [dashed] (K)--(Kz);
draw [dashed] (K)--(Kx);
% foton beam
draw (-3, 2)--(O) node[pos=0.45, above] {$ hbar omega$};
end{tikzpicture}


When I insert this piece of code anywhere in the beamerposter document (either within begin{block}...end{block}, or just inside the frame), I get this ugly result (the image spans the whole poster width):
enter image description here



MWE



documentclass[final, 24pt]{beamer}usetheme{Frankfurt}usecolortheme{orchid}usefonttheme[onlymath]{serif}mode<presentation>
usepackage[orientation=portrait,size=a0,scale=1.4,debug]{beamerposter}
usepackage[utf8]{inputenc}
usepackage[T2A]{fontenc}
usepackage[english, russian]{babel}
usepackage{tikz}

newcommand{vc}[1]{mathbf {#1}}
begin{document}
begin{frame}{}
begin{center}
begin{tikzpicture}
% ... picture code given above
end{tikzpicture}
end{center}
end{frame}
end{document}


How do I make its appearance acceptable? Rescaling by means of



scalebox{2.2}{
begin{tikzpicture}[scale=3]
% picture code
end{tikzpicture}
}


produces this output (spans the full paper width as well)
enter image description here



Then I can make some adjustments to line widths (draw[..., line width=0.33ex] for example) manually to get reasonable output:
enter image description here



I want to ask the community whether there is another way to get the desired result (maybe it is a widely known issue but I have failed to google it directly) and why does direct 'porting' of nice image code from a4 document produce such a garbage?



Thank you in advance.









share







New contributor




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

























    0















    I tried to insert a TikZ picture provided below into a beamerposter document.
    Normal picture



    It is generated by the following code (except the arrow in the middle of the "incident beam", it's an excessive detail):



    begin{tikzpicture}
    % axes and origin
    coordinate (O) at (0, 0);
    draw node[anchor=north east] {$O$};
    draw [->] (-3,0)--(3,0) node [pos=0.98, below] {$x$};
    draw [->] (0,-1)--(0,3) node [pos=0.98, left] {$z$};
    % orts
    draw [thick, ->] (O)--(1,0) node[pos=1, below] {$vc e_x$};
    draw [thick, ->] (O)--(0,1) node[pos=1, left] {$vc e_z$};
    % vector k and its angle chi
    coordinate (K) at ({2.6*sin(30)},{2.6*cos(30)});
    draw [thick, ->] (O)--(K) node[pos=1, right] {$vc k$};
    draw ([shift=(60:0.5)] O) arc (60:90:0.5) node[pos=0.35, above] {$chi$};
    % k projections
    coordinate (Kx) at (K |- O);
    coordinate (Kz) at (K -| O);
    draw [thick, ->](O)--(Kx) node[pos=1.15, below] {$vc k_x$};
    draw [thick, ->](O)--(Kz) node[pos=1, left] {$vc k_z$};
    draw [dashed] (K)--(Kz);
    draw [dashed] (K)--(Kx);
    % foton beam
    draw (-3, 2)--(O) node[pos=0.45, above] {$ hbar omega$};
    end{tikzpicture}


    When I insert this piece of code anywhere in the beamerposter document (either within begin{block}...end{block}, or just inside the frame), I get this ugly result (the image spans the whole poster width):
    enter image description here



    MWE



    documentclass[final, 24pt]{beamer}usetheme{Frankfurt}usecolortheme{orchid}usefonttheme[onlymath]{serif}mode<presentation>
    usepackage[orientation=portrait,size=a0,scale=1.4,debug]{beamerposter}
    usepackage[utf8]{inputenc}
    usepackage[T2A]{fontenc}
    usepackage[english, russian]{babel}
    usepackage{tikz}

    newcommand{vc}[1]{mathbf {#1}}
    begin{document}
    begin{frame}{}
    begin{center}
    begin{tikzpicture}
    % ... picture code given above
    end{tikzpicture}
    end{center}
    end{frame}
    end{document}


    How do I make its appearance acceptable? Rescaling by means of



    scalebox{2.2}{
    begin{tikzpicture}[scale=3]
    % picture code
    end{tikzpicture}
    }


    produces this output (spans the full paper width as well)
    enter image description here



    Then I can make some adjustments to line widths (draw[..., line width=0.33ex] for example) manually to get reasonable output:
    enter image description here



    I want to ask the community whether there is another way to get the desired result (maybe it is a widely known issue but I have failed to google it directly) and why does direct 'porting' of nice image code from a4 document produce such a garbage?



    Thank you in advance.









    share







    New contributor




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























      0












      0








      0








      I tried to insert a TikZ picture provided below into a beamerposter document.
      Normal picture



      It is generated by the following code (except the arrow in the middle of the "incident beam", it's an excessive detail):



      begin{tikzpicture}
      % axes and origin
      coordinate (O) at (0, 0);
      draw node[anchor=north east] {$O$};
      draw [->] (-3,0)--(3,0) node [pos=0.98, below] {$x$};
      draw [->] (0,-1)--(0,3) node [pos=0.98, left] {$z$};
      % orts
      draw [thick, ->] (O)--(1,0) node[pos=1, below] {$vc e_x$};
      draw [thick, ->] (O)--(0,1) node[pos=1, left] {$vc e_z$};
      % vector k and its angle chi
      coordinate (K) at ({2.6*sin(30)},{2.6*cos(30)});
      draw [thick, ->] (O)--(K) node[pos=1, right] {$vc k$};
      draw ([shift=(60:0.5)] O) arc (60:90:0.5) node[pos=0.35, above] {$chi$};
      % k projections
      coordinate (Kx) at (K |- O);
      coordinate (Kz) at (K -| O);
      draw [thick, ->](O)--(Kx) node[pos=1.15, below] {$vc k_x$};
      draw [thick, ->](O)--(Kz) node[pos=1, left] {$vc k_z$};
      draw [dashed] (K)--(Kz);
      draw [dashed] (K)--(Kx);
      % foton beam
      draw (-3, 2)--(O) node[pos=0.45, above] {$ hbar omega$};
      end{tikzpicture}


      When I insert this piece of code anywhere in the beamerposter document (either within begin{block}...end{block}, or just inside the frame), I get this ugly result (the image spans the whole poster width):
      enter image description here



      MWE



      documentclass[final, 24pt]{beamer}usetheme{Frankfurt}usecolortheme{orchid}usefonttheme[onlymath]{serif}mode<presentation>
      usepackage[orientation=portrait,size=a0,scale=1.4,debug]{beamerposter}
      usepackage[utf8]{inputenc}
      usepackage[T2A]{fontenc}
      usepackage[english, russian]{babel}
      usepackage{tikz}

      newcommand{vc}[1]{mathbf {#1}}
      begin{document}
      begin{frame}{}
      begin{center}
      begin{tikzpicture}
      % ... picture code given above
      end{tikzpicture}
      end{center}
      end{frame}
      end{document}


      How do I make its appearance acceptable? Rescaling by means of



      scalebox{2.2}{
      begin{tikzpicture}[scale=3]
      % picture code
      end{tikzpicture}
      }


      produces this output (spans the full paper width as well)
      enter image description here



      Then I can make some adjustments to line widths (draw[..., line width=0.33ex] for example) manually to get reasonable output:
      enter image description here



      I want to ask the community whether there is another way to get the desired result (maybe it is a widely known issue but I have failed to google it directly) and why does direct 'porting' of nice image code from a4 document produce such a garbage?



      Thank you in advance.









      share







      New contributor




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












      I tried to insert a TikZ picture provided below into a beamerposter document.
      Normal picture



      It is generated by the following code (except the arrow in the middle of the "incident beam", it's an excessive detail):



      begin{tikzpicture}
      % axes and origin
      coordinate (O) at (0, 0);
      draw node[anchor=north east] {$O$};
      draw [->] (-3,0)--(3,0) node [pos=0.98, below] {$x$};
      draw [->] (0,-1)--(0,3) node [pos=0.98, left] {$z$};
      % orts
      draw [thick, ->] (O)--(1,0) node[pos=1, below] {$vc e_x$};
      draw [thick, ->] (O)--(0,1) node[pos=1, left] {$vc e_z$};
      % vector k and its angle chi
      coordinate (K) at ({2.6*sin(30)},{2.6*cos(30)});
      draw [thick, ->] (O)--(K) node[pos=1, right] {$vc k$};
      draw ([shift=(60:0.5)] O) arc (60:90:0.5) node[pos=0.35, above] {$chi$};
      % k projections
      coordinate (Kx) at (K |- O);
      coordinate (Kz) at (K -| O);
      draw [thick, ->](O)--(Kx) node[pos=1.15, below] {$vc k_x$};
      draw [thick, ->](O)--(Kz) node[pos=1, left] {$vc k_z$};
      draw [dashed] (K)--(Kz);
      draw [dashed] (K)--(Kx);
      % foton beam
      draw (-3, 2)--(O) node[pos=0.45, above] {$ hbar omega$};
      end{tikzpicture}


      When I insert this piece of code anywhere in the beamerposter document (either within begin{block}...end{block}, or just inside the frame), I get this ugly result (the image spans the whole poster width):
      enter image description here



      MWE



      documentclass[final, 24pt]{beamer}usetheme{Frankfurt}usecolortheme{orchid}usefonttheme[onlymath]{serif}mode<presentation>
      usepackage[orientation=portrait,size=a0,scale=1.4,debug]{beamerposter}
      usepackage[utf8]{inputenc}
      usepackage[T2A]{fontenc}
      usepackage[english, russian]{babel}
      usepackage{tikz}

      newcommand{vc}[1]{mathbf {#1}}
      begin{document}
      begin{frame}{}
      begin{center}
      begin{tikzpicture}
      % ... picture code given above
      end{tikzpicture}
      end{center}
      end{frame}
      end{document}


      How do I make its appearance acceptable? Rescaling by means of



      scalebox{2.2}{
      begin{tikzpicture}[scale=3]
      % picture code
      end{tikzpicture}
      }


      produces this output (spans the full paper width as well)
      enter image description here



      Then I can make some adjustments to line widths (draw[..., line width=0.33ex] for example) manually to get reasonable output:
      enter image description here



      I want to ask the community whether there is another way to get the desired result (maybe it is a widely known issue but I have failed to google it directly) and why does direct 'porting' of nice image code from a4 document produce such a garbage?



      Thank you in advance.







      tikz-pgf scaling beamerposter





      share







      New contributor




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










      share







      New contributor




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








      share



      share






      New contributor




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









      asked 3 mins ago









      StaticZeroStaticZero

      1




      1




      New contributor




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





      New contributor





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






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






















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


          }
          });






          StaticZero 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%2f478118%2ffailed-to-properly-set-size-of-tikzpicture-in-beamerposter%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








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










          draft saved

          draft discarded


















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













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












          StaticZero 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%2f478118%2ffailed-to-properly-set-size-of-tikzpicture-in-beamerposter%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

          IEEEtran - How to include ORCID in TeX/PDF with PdfLatexIs there a standard way to include ORCID in TeX /...

          Cicindela nigrior Przypisy | Menu nawigacyjneCicindela varians unicolorManual for the Identification of the...

          Glossaries-extra: Adding glossaries package to “Clas­sicTh­e­sis” template by Dr. André Miede v. 4.6 ...