Difference between revisions of "LaTeX:Diagrams"

(Integer coordinates inside a cube of sidelength 6)
m (Diagrams and Figures)
(6 intermediate revisions by 4 users not shown)
Line 2: Line 2:
  
 
== Diagrams and Figures ==
 
== Diagrams and Figures ==
It's best to rely on [http://artofproblemsolving.com/wiki/index.php/Asymptote_(Vector_Graphics_Language) Asymptote] for drawing diagrams and figures, as <math>\text{\LaTeX}</math> does not have the ability to output good diagrams for geometry and such. However, <math>\text{\LaTeX}</math> does work wonderfully well with Asymptote.
+
We use [http://artofproblemsolving.com/wiki/index.php/Asymptote_(Vector_Graphics_Language) Asymptote] for drawing diagrams and figures because <math>\text{\LaTeX}</math> does not have the ability to output good diagrams for geometry and other subjects. However, <math>\text{\LaTeX}</math> works very well with Asymptote.
 
 
==Integer coordinates inside a cube of sidelength 6==
 
<asy>
 
usepackage("tikz");
 
label("\begin{tikzpicture}[domain=0:6,x=5mm,y=5mm,z=2.5mm]
 
%\draw (0,0) grid (5,5);
 
\foreach \i in {0,...,6}{
 
\foreach \z in {0,...,6}{
 
\foreach \m in {0,...,6}{
 
\node[red] at (\i ,(\m ,\z ) {\textbullet }; );
 
\node[red] at (\m ,(\i ,\z ) {\textbullet }; );
 
\node[blue] at (\z , (\i ,\m ) {\textbullet }; );
 
};
 
};
 
}
 
\draw (0,0)--(0,6);
 
\draw (0,0)--(6,0);
 
\draw plot (6,(0,\x););
 
\draw plot (6,(6,\x););
 
\draw plot (0,(6,\x););
 
\draw (0,6)--(6,6);
 
\draw (6,0)--(6,6);
 
\end{tikzpicture}");
 
</asy>
 

Revision as of 19:51, 18 August 2020

LaTeX
About - Getting Started - Diagrams - Symbols - Downloads - Basics - Math - Examples - Pictures - Layout - Commands - Packages - Help

Diagrams and Figures

We use Asymptote for drawing diagrams and figures because $\text{\LaTeX}$ does not have the ability to output good diagrams for geometry and other subjects. However, $\text{\LaTeX}$ works very well with Asymptote.