I want to make a picture in physics by tikz, but not. Can you help me? The Next CEO of Stack...
Make solar eclipses exceedingly rare, but still have new moons
Multiple labels for a single equation
Can we say or write : "No, it'sn't"?
If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?
If a black hole is created from light, can this black hole then move at speed of light?
Novel about a guy who is possessed by the divine essence and the world ends?
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
Rotate a column
Why has the US not been more assertive in confronting Russia in recent years?
Non-deterministic sum of floats
Sending manuscript to multiple publishers
Between two walls
Why do remote companies require working in the US?
Bold, vivid family
How do I go from 300 unfinished/half written blog posts, to published posts?
Can I run my washing machine drain line into a condensate pump so it drains better?
How do I avoid eval and parse?
How to start emacs in "nothing" mode (`fundamental-mode`)
Why do professional authors make "consistency" mistakes? And how to avoid them?
Unreliable Magic - Is it worth it?
Is it ever safe to open a suspicious html file (e.g. email attachment)?
What happens if you roll doubles 3 times then land on "Go to jail?"
If/When UK leaves the EU, can a future goverment conduct a referendum to join the EU?
Skipping indices in a product
I want to make a picture in physics by tikz, but not. Can you help me?
The Next CEO of Stack OverflowCan I make the page as big as my picture?Can you make chemical structure diagrams in LaTeX?Help with drawing a picture (pgf/tikz)To wrap the external lines so that it can touch the perimeterWant to make the following shape function in TikZ?Drawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHelp with doing these arrows on this TikZ picturenot able to centre tikz pictureIs there an wasy way to program in Tikz something like the one in the image?
A example:
documentclass[tikz]{standalone}
usetikzlibrary{positioning}
begin{document}
begin{tikzpicture}[
force/.style={>=latex,draw=blue,fill=blue},
axis/.style={densely dashed,gray,font=small},
M/.style={rectangle,draw,fill=lightgray,minimum size=0.5cm,thin},
m/.style={rectangle,draw=black,fill=gray,minimum size=0.3cm,thin},
plane/.style={draw=black,fill=blue!10},
string/.style={draw=red, thick},
pulley/.style={draw, thick, circle},
]
%mainshape
filldraw[blue!30!white, draw=black] (0,0) coordinate (b) rectangle (3,1) coordinate (c);
% draw[pulley] (3.1,1.2) circle (0.25cm);
node (pulley) [pulley, minimum width=.5cm, anchor=south west] at (c) {};
filldraw[gray!40!white, draw=black] (1.5,1.05) rectangle (2,1.55);
draw[red,thick] (2,1.2)--(pulley.west);
filldraw[gray, draw=black] (3.10, 0.1) rectangle (3.6, 0.6) coordinate (a);
draw[red,thick] (a -| pulley.south)--(pulley.south);
%FBD1
begin{scope};
node[M, right=50pt of a](M){};
{[axis,->]
draw (0,-1) -- (0,2) node[right] {$+y$};
draw (M) -- ++(2,0) node[right] {$+x$};}
{[force,->]
% Assuming that Mg = 1. The normal force will therefore be cos(alpha)
draw (M.center) -- ++(0,1) node[above right] {$F_N$};
draw (M.west) -- ++(-1,0) node[left] {$F_f$};
draw (M.east) -- ++(1,0) node[above] {$T$};}
draw[force,->] (M.center)-- ++(0,-1) node[below] {$Mg$};
end{scope};
%FBD2
node[m, left=25pt of b] (m) {};
draw[axis,->] (m) -- ++(0,-2) node[left] {$+$};
{[force,->]
draw (m.north) -- ++(0,1) node[above] {$T'$};
draw (m.south) -- ++(0,-1) node[right] {$mg$};
};
end{tikzpicture}
end{document}
tikz-pgf pgfplots diagrams
New contributor
add a comment |
A example:
documentclass[tikz]{standalone}
usetikzlibrary{positioning}
begin{document}
begin{tikzpicture}[
force/.style={>=latex,draw=blue,fill=blue},
axis/.style={densely dashed,gray,font=small},
M/.style={rectangle,draw,fill=lightgray,minimum size=0.5cm,thin},
m/.style={rectangle,draw=black,fill=gray,minimum size=0.3cm,thin},
plane/.style={draw=black,fill=blue!10},
string/.style={draw=red, thick},
pulley/.style={draw, thick, circle},
]
%mainshape
filldraw[blue!30!white, draw=black] (0,0) coordinate (b) rectangle (3,1) coordinate (c);
% draw[pulley] (3.1,1.2) circle (0.25cm);
node (pulley) [pulley, minimum width=.5cm, anchor=south west] at (c) {};
filldraw[gray!40!white, draw=black] (1.5,1.05) rectangle (2,1.55);
draw[red,thick] (2,1.2)--(pulley.west);
filldraw[gray, draw=black] (3.10, 0.1) rectangle (3.6, 0.6) coordinate (a);
draw[red,thick] (a -| pulley.south)--(pulley.south);
%FBD1
begin{scope};
node[M, right=50pt of a](M){};
{[axis,->]
draw (0,-1) -- (0,2) node[right] {$+y$};
draw (M) -- ++(2,0) node[right] {$+x$};}
{[force,->]
% Assuming that Mg = 1. The normal force will therefore be cos(alpha)
draw (M.center) -- ++(0,1) node[above right] {$F_N$};
draw (M.west) -- ++(-1,0) node[left] {$F_f$};
draw (M.east) -- ++(1,0) node[above] {$T$};}
draw[force,->] (M.center)-- ++(0,-1) node[below] {$Mg$};
end{scope};
%FBD2
node[m, left=25pt of b] (m) {};
draw[axis,->] (m) -- ++(0,-2) node[left] {$+$};
{[force,->]
draw (m.north) -- ++(0,1) node[above] {$T'$};
draw (m.south) -- ++(0,-1) node[right] {$mg$};
};
end{tikzpicture}
end{document}
tikz-pgf pgfplots diagrams
New contributor
Welcome to TeX.SE!
– Kurt
23 secs ago
add a comment |
A example:
documentclass[tikz]{standalone}
usetikzlibrary{positioning}
begin{document}
begin{tikzpicture}[
force/.style={>=latex,draw=blue,fill=blue},
axis/.style={densely dashed,gray,font=small},
M/.style={rectangle,draw,fill=lightgray,minimum size=0.5cm,thin},
m/.style={rectangle,draw=black,fill=gray,minimum size=0.3cm,thin},
plane/.style={draw=black,fill=blue!10},
string/.style={draw=red, thick},
pulley/.style={draw, thick, circle},
]
%mainshape
filldraw[blue!30!white, draw=black] (0,0) coordinate (b) rectangle (3,1) coordinate (c);
% draw[pulley] (3.1,1.2) circle (0.25cm);
node (pulley) [pulley, minimum width=.5cm, anchor=south west] at (c) {};
filldraw[gray!40!white, draw=black] (1.5,1.05) rectangle (2,1.55);
draw[red,thick] (2,1.2)--(pulley.west);
filldraw[gray, draw=black] (3.10, 0.1) rectangle (3.6, 0.6) coordinate (a);
draw[red,thick] (a -| pulley.south)--(pulley.south);
%FBD1
begin{scope};
node[M, right=50pt of a](M){};
{[axis,->]
draw (0,-1) -- (0,2) node[right] {$+y$};
draw (M) -- ++(2,0) node[right] {$+x$};}
{[force,->]
% Assuming that Mg = 1. The normal force will therefore be cos(alpha)
draw (M.center) -- ++(0,1) node[above right] {$F_N$};
draw (M.west) -- ++(-1,0) node[left] {$F_f$};
draw (M.east) -- ++(1,0) node[above] {$T$};}
draw[force,->] (M.center)-- ++(0,-1) node[below] {$Mg$};
end{scope};
%FBD2
node[m, left=25pt of b] (m) {};
draw[axis,->] (m) -- ++(0,-2) node[left] {$+$};
{[force,->]
draw (m.north) -- ++(0,1) node[above] {$T'$};
draw (m.south) -- ++(0,-1) node[right] {$mg$};
};
end{tikzpicture}
end{document}
tikz-pgf pgfplots diagrams
New contributor
A example:
documentclass[tikz]{standalone}
usetikzlibrary{positioning}
begin{document}
begin{tikzpicture}[
force/.style={>=latex,draw=blue,fill=blue},
axis/.style={densely dashed,gray,font=small},
M/.style={rectangle,draw,fill=lightgray,minimum size=0.5cm,thin},
m/.style={rectangle,draw=black,fill=gray,minimum size=0.3cm,thin},
plane/.style={draw=black,fill=blue!10},
string/.style={draw=red, thick},
pulley/.style={draw, thick, circle},
]
%mainshape
filldraw[blue!30!white, draw=black] (0,0) coordinate (b) rectangle (3,1) coordinate (c);
% draw[pulley] (3.1,1.2) circle (0.25cm);
node (pulley) [pulley, minimum width=.5cm, anchor=south west] at (c) {};
filldraw[gray!40!white, draw=black] (1.5,1.05) rectangle (2,1.55);
draw[red,thick] (2,1.2)--(pulley.west);
filldraw[gray, draw=black] (3.10, 0.1) rectangle (3.6, 0.6) coordinate (a);
draw[red,thick] (a -| pulley.south)--(pulley.south);
%FBD1
begin{scope};
node[M, right=50pt of a](M){};
{[axis,->]
draw (0,-1) -- (0,2) node[right] {$+y$};
draw (M) -- ++(2,0) node[right] {$+x$};}
{[force,->]
% Assuming that Mg = 1. The normal force will therefore be cos(alpha)
draw (M.center) -- ++(0,1) node[above right] {$F_N$};
draw (M.west) -- ++(-1,0) node[left] {$F_f$};
draw (M.east) -- ++(1,0) node[above] {$T$};}
draw[force,->] (M.center)-- ++(0,-1) node[below] {$Mg$};
end{scope};
%FBD2
node[m, left=25pt of b] (m) {};
draw[axis,->] (m) -- ++(0,-2) node[left] {$+$};
{[force,->]
draw (m.north) -- ++(0,1) node[above] {$T'$};
draw (m.south) -- ++(0,-1) node[right] {$mg$};
};
end{tikzpicture}
end{document}
tikz-pgf pgfplots diagrams
tikz-pgf pgfplots diagrams
New contributor
New contributor
edited 1 min ago
Zarko
128k868167
128k868167
New contributor
asked 7 mins ago
Hiếu TrầnHiếu Trần
11
11
New contributor
New contributor
Welcome to TeX.SE!
– Kurt
23 secs ago
add a comment |
Welcome to TeX.SE!
– Kurt
23 secs ago
Welcome to TeX.SE!
– Kurt
23 secs ago
Welcome to TeX.SE!
– Kurt
23 secs ago
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
});
}
});
Hiếu Trần 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%2f482206%2fi-want-to-make-a-picture-in-physics-by-tikz-but-not-can-you-help-me%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
Hiếu Trần is a new contributor. Be nice, and check out our Code of Conduct.
Hiếu Trần is a new contributor. Be nice, and check out our Code of Conduct.
Hiếu Trần is a new contributor. Be nice, and check out our Code of Conduct.
Hiếu Trần 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%2f482206%2fi-want-to-make-a-picture-in-physics-by-tikz-but-not-can-you-help-me%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
Welcome to TeX.SE!
– Kurt
23 secs ago