I want to make a picture in physics with TikZ. Can you help me? The Next CEO of Stack...
What flight has the highest ratio of time difference to flight time?
Skipping indices in a product
Do I need to enable Dev Hub in my PROD Org?
Limits on contract work without pre-agreed price/contract (UK)
What's the best way to handle refactoring a big file?
How fast would a person need to move to trick the eye?
How to invert MapIndexed on a ragged structure? How to construct a tree from rules?
How do I avoid eval and parse?
sp_blitzCache results Memory grants
How does the mv command work with external drives?
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Can we say or write : "No, it'sn't"?
If the heap is initialized for security, then why is the stack uninitialized?
How do I transpose the 1st and -1th levels of an arbitrarily nested array?
Why does standard notation not preserve intervals (visually)
What is the result of assigning to std::vector<T>::begin()?
What exact does MIB represent in SNMP? How is it different from OID?
Is it ever safe to open a suspicious html file (e.g. email attachment)?
How do we know the LHC results are robust?
How did the Bene Gesserit know how to make a Kwisatz Haderach?
Several mode to write the symbol of a vector
Written every which way
How to solve a differential equation with a term to a power?
How do scammers retract money, while you can’t?
I want to make a picture in physics with TikZ. 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
5 mins 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 3 mins ago
Zarko
128k868167
128k868167
New contributor
asked 12 mins ago
Hiếu TrầnHiếu Trần
11
11
New contributor
New contributor
Welcome to TeX.SE!
– Kurt
5 mins ago
add a comment |
Welcome to TeX.SE!
– Kurt
5 mins ago
Welcome to TeX.SE!
– Kurt
5 mins ago
Welcome to TeX.SE!
– Kurt
5 mins 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-with-tikz-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-with-tikz-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
5 mins ago