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
I tried to insert a TikZ picture provided below into a beamerposter document.

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):

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)

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

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
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.
add a comment |
I tried to insert a TikZ picture provided below into a beamerposter document.

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):

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)

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

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
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.
add a comment |
I tried to insert a TikZ picture provided below into a beamerposter document.

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):

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)

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

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
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.

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):

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)

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

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
tikz-pgf scaling beamerposter
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.
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.
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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