I want to make a picture in physics by tikz, but not. Can you help me? The Next CEO of Stack...
Inappropriate reference requests from Journal reviewers
Which tube will fit a -(700 x 25c) wheel?
How to Reset Passwords on Multiple Websites Easily?
If a black hole is created from light, can this black hole then move at speed of light?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
Would a galaxy be visible from outside, but nearby?
Why does standard notation not preserve intervals (visually)
Novel about a guy who is possessed by the divine essence and the world ends?
What does "Its cash flow is deeply negative" mean?
Contours of a clandestine nature
What was the first Unix version to run on a microcomputer?
If/When UK leaves the EU, can a future goverment conduct a referendum to join the EU?
Why am I allowed to create multiple unique pointers from a single object?
In excess I'm lethal
How does the mv command work with external drives?
What is the result of assigning to std::vector<T>::begin()?
Won the lottery - how do I keep the money?
Written every which way
Is there an analogue of projective spaces for proper schemes?
Unreliable Magic - Is it worth it?
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
Why do we use the plural of movies in this phrase "We went to the movies last night."?
Bold, vivid family
Interfacing a button to MCU (and PC) with 50m long cable
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
39 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 2 mins ago
Zarko
128k868167
128k868167
New contributor
asked 8 mins ago
Hiếu TrầnHiếu Trần
11
11
New contributor
New contributor
Welcome to TeX.SE!
– Kurt
39 secs ago
add a comment |
Welcome to TeX.SE!
– Kurt
39 secs ago
Welcome to TeX.SE!
– Kurt
39 secs ago
Welcome to TeX.SE!
– Kurt
39 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
39 secs ago