Need some help, why [OE], [OA] e [OC] are not appearing dash?
Code: Select all
\documentclass[12pt, twoside, a4paper]{article}
\usepackage[portuguese]{babel}
\usepackage[applemac]{inputenc}
\usepackage[left=2.0cm,top=1.5cm,right=2.0cm,bottom=1.75cm]{geometry}
\usepackage{amsmath,amssymb,amsfonts,textcomp,setspace,color,graphicx, graphics}
\usepackage{pgf,tikz}
\pagestyle{empty}
\usepackage{tikz}
\usepackage{tikz-3dplot}
\usetikzlibrary{patterns}
\begin{tikzpicture}[scale=1,cm={-1,-1,1,0,(0,0)},x=3.85mm,z=-1cm]
%draw the axes (x-axis: towards you; y-axis: to the right; z-axis: up)
\draw[thick,->,black] (0,0,0) -- (5,0,0) node[anchor=north east]{$x$};
\draw[thick,->] (0,0,0) -- (0,5,0) node[anchor=north east]{$y$};
\draw[thick,->] (0,0,0) -- (0,0,6) node[anchor=east]{$z$};
%draw the top and bottom of the parallelepiped
\draw[dashed] (0,0,0) -- (0,3,0);
\draw[dashed] (0,0,0) -- (3,0,0);
\draw[very thick] (3,0,0) -- (3,3,0);
\draw[very thick] (0,3,0) -- (3,3,0);
\draw[very thick] (3,0,5) -- (0,0,5);
\draw[very thick] (0,0,5) -- (0,3,5);
\draw[very thick] (0,3,5) -- (3,3,5);
\draw[very thick] (3,0,5) -- (3,3,5);
%draw the edges of the parallelepiped
\draw[very thick] (0,3,0) -- (0,3,5);
\draw[very thick] (3,0,0) -- (3,0,5);
\draw[very thick] (3,3,0) -- (3,3,5);
%draw dashed lines to represent hidden edges
\draw[dashed] (0,0,0) -- (0,0,5);
%nodes and edge labels
\draw (-0.15,-0.30,0) node {O};
\draw (2.90,-0.30,0) node {A};
\draw (3.60,3.20,0) node {B};
\draw (0,3.20,0.20) node {C};
\draw (0,3.20,5.15) node {D};
\draw (0,-0.20,5.15) node {E};
\draw (3,-0.20,5.15) node {F};
\draw (3,3.25,4.85) node {G};
\end{tikzpicture}