-
as seen on Stack Overflow
- Search for 'Stack Overflow'
This question resulted from the question here
I want to produce a curly brace which spans some lines of text.
The problem is that I have to align the x coordinate manually, which is not a clean solution.
Currently I use
\begin{frame}{Example}
\begin{itemize}
\item The long Issue 1
\tikz[remember…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I am trying to display a sphere in PGF/TikZ to illustrate the idea of great circles.
The code for my current result is:
\begin{tikzpicture}
\tikzfading[name=fade right,
left color=transparent!20,
right color=transparent!90]
\tikzfading[name=fade out,
inner color=transparent!100,
outer color=transparent…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using TikZ to draw diagrams in LaTeX that I then want to isolate as image files to put online. My guess is there is a way to extract these diagrams directly without having to tease them out of the finished .pdf file. How would I go about doing that? (If it matters, I'm using TeXnicCenter.)
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I need to align each row of the graph to the center. I am trying to do it with xshift. Here the code:
\begin{tikzpicture}[node distance=1.5cm, auto, text centered]
\tikzstyle{every node}=[draw,ball,align=center];
\begin{scope}[xshift=1.5cm]
\node (A) {A};
\node [right…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to build my trees using macros but I don't get the result I want. Here is a minimal example:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{trees}
\newcommand{\LeafNode}[1]{%
child {node {#1}}
}
\newcommand{\InnerNode}[3]{%
child {node {#3}
#1
…
>>> More