Search found 6 matches

by LagrangeEU
Fri May 20, 2011 12:06 pm
Forum: Viewers for PDF, PS, and DVI
Topic: Best PDF viewer
Replies: 5
Views: 42556

Re: Best PDF viewer

I second Stefan's suggestion. When still writing use Sumatra since it automatically updates the pages (as the only viewer I know of on Windows!!!). In the end check it with Adobe Reader, just to make sure everything is fine.
by LagrangeEU
Sat May 14, 2011 11:14 am
Forum: General
Topic: Remove entries from LOF in memoir
Replies: 3
Views: 2409

Remove entries from LOF in memoir

I have just tested the the caption package with memoir and it should would.
Consider the following minimal working example
\documentclass[12pt]{memoir}

\usepackage{caption}

\begin{document}
\listoffigures


\appendix
\captionsetup[figure]{list=no} %Outcomment this line to see the effect
\begin ...
by LagrangeEU
Fri May 13, 2011 11:48 pm
Forum: General
Topic: Remove entries from LOF in memoir
Replies: 3
Views: 2409

Remove entries from LOF in memoir

Just to clarify, did you include the command in the following way

Code: Select all

\appendix
\captionsetup[figure]{list=no}
by LagrangeEU
Fri May 13, 2011 10:02 am
Forum: Graphics, Figures & Tables
Topic: Tree diagrams (pstricks?)
Replies: 1
Views: 1742

Tree diagrams (pstricks?)

What you want can be done by pstricks. I use the package TikZ, which provides a very easy way to do what you want. Check the manual and the following example
http://www.texample.net/tikz/examples/nodetutorial/
by LagrangeEU
Thu May 12, 2011 10:30 am
Forum: Graphics, Figures & Tables
Topic: Tikz and how to create a node [near end]
Replies: 3
Views: 12075

Tikz and how to create a node [near end]

Thank you guys! I think that cgneider's proposal is the most general one and will cover harder cases.

As I said my current problem is solved. To illustrate what I did see this example:

\documentclass{article}
\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
\draw[white] (0,0) -- node[near ...
by LagrangeEU
Wed May 11, 2011 8:08 pm
Forum: Graphics, Figures & Tables
Topic: Tikz and how to create a node [near end]
Replies: 3
Views: 12075

Tikz and how to create a node [near end]

Hello LC!

I am having a problem with TikZ and making it do what I want. In fact this is what made me sign up for this forum.
I am making a figure with TikZ and my problem is I want to use draw some line between to known points, say I know the coordinates. Somewhere along the line I would like to ...