Tagged Questions
5
votes
1answer
162 views
How to create syntactic trees and align them in LaTeX?
I want to create syntactic trees and align them in LaTeX as in the picture below.
Can you help me?
4
votes
1answer
108 views
Nodes within leaf text in tikz-qtree?
I'm trying to draw a box around only part of the text in a tikz-qtree tree, but the closest I can do is this:
\documentclass{article}
\usepackage{tikz}
\usepackage{tikz-qtree}
\begin{document}
...
8
votes
1answer
278 views
Edged arrows with tikz-qtree
I've seen this nice little example tree drawn with LaTeX, afaik not tikz. Can I draw similar arrows with tikz-qtree by specifying start and end point only?
3
votes
1answer
319 views
Dimension too large with tikz-qtree
I want to draw a tree with tikz-qtree, but it bails with Dimension
too large.
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{pdflscape}
\usepackage{tikz}
...
8
votes
1answer
389 views
tikz-qtree: curved lines & multiple parent nodes
I am quite new to LaTeX, and I am stuck with a problem Google can't seem to help me with.
Basically, I need some hand holding in doing something that is more complicated than my skills can handle at ...
4
votes
1answer
140 views
Can I remove the last leaf line in tikz-qtree?
I've got
\Tree [.CP [.TP [.NP [.D the ] [.N woman ] [.CP [.TP [.NP [.N who
] ] [.VP [.V stole ] [.NP [.D my ] [.N necklace ] ] ] ] ] ] [.VP
[.V entered ] ] ] ]
which gives me a nice tree, but the ...
1
vote
2answers
389 views
Tree in a graph's node
I am trying to figure out how I can draw a tree in a graph's node with tikz. Meaning, the node is not supposed to have a value or name but a tree inside of the circle around it.
I tried the following ...
4
votes
2answers
338 views
How to balance binary branches and repair shorthand triangles in LFG style c-trees using tikz-qtree
I have modified the example from the tikz-qtree documentation to form this LFG style c-tree, but am having difficulty balancing the binary branches in general, and the IP branches and roof/triangle DP ...
12
votes
2answers
487 views
TiKZ make lines connecting nodes have the same endpoints
Using the MWE below:
\documentclass{standalone}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usepackage{tikz-qtree-compat}
\usepackage{ textcomp }
\begin{document}
\begin{tikzpicture}
\Tree [
.TP [ ...
4
votes
1answer
689 views
Arrows in tikz-qtree with symbols in node names
I have a syntax tree with angle brackets to represent movement:
\begin{tikzpicture}
\Tree [
.TP [
.T' \node{T+verb}; [
.vP \qroof{`ana}.DP [
.v' ...
4
votes
1answer
312 views
adding a node to a qroof in tikz-qtree
I need a node in the head element of a qroof in tikz-qtree (using tikz-qtree-compat). I need the 'np' to be a node so I can draw an arrow to it. However, the following breaks:
...