Search found 2 matches

by tiagodelpupo
Mon Jun 18, 2018 4:42 pm
Forum: Text Formatting
Topic: Drawinn Tikz mindmap and changin shapes
Replies: 3
Views: 4463

Drawinn Tikz mindmap and changin shapes

\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\usetikzlibrary[graphs]
\graph [no placement,nodes={draw,rectangle},edges={>=latex}] {
A [at={(2,2)},circle] -- {
B [at={(0,4)}],
C [at={(4,4)}],
D [at={(4,0)}],
E [at={(0,0)}],
}
};
\end{tikzpicture}
\end{document}

Like this?
by tiagodelpupo
Mon Jun 18, 2018 3:58 pm
Forum: Text Formatting
Topic: Compiling a list of exercise
Replies: 1
Views: 1805

Compiling a list of exercise

Hello everyone.

I'm writing a list of exercise, like this:

Exercise 1
Solution 1
Exercise 2
Solution 2
Exercise 3
Solution 3....

It`s a part of a "exercise book". When I compile, I need it to look like this:

Exercise 1
Exercise 2
Exercise 3...
Solution 1
Solution 2
Solution 3...

How can I do ...