Search found 6 matches

by weltio
Tue Jul 29, 2014 1:47 pm
Forum: Graphics, Figures & Tables
Topic: TExample "map projections" not working
Replies: 3
Views: 5195

TExample "map projections" not working

Hello

I can compile the following example
http://www.texample.net/tikz/examples/map-projections/
but it doesn't look like the given one.
I attached what I got and the log file. Is it related to the "Missing character: There is no . in font nullfont!" Messages?

I'm using the 2.02 release of ...
by weltio
Sun Jun 09, 2013 11:19 pm
Forum: Graphics, Figures & Tables
Topic: Parts of included EPS file cropped
Replies: 3
Views: 4621

Re: Parts of included EPS file cropped

Thank you. I should have seen this. It's really a mistake by Cisco.

I solved the problem by downloading the black and white version and replaced the black color with that used in the color version.
by weltio
Sun Jun 09, 2013 8:31 pm
Forum: Graphics, Figures & Tables
Topic: Parts of included EPS file cropped
Replies: 3
Views: 4621

Parts of included EPS file cropped

Using the attached EPS file. The resulting PDF version is cropped at the right side - just a few pixels but it's really annoying
\documentclass[12pt,a4paper,twoside]{report}
\usepackage{graphicx}

\begin{document}
\includegraphics{cloud}
\end{document}


So far I tried
eps2eps
epstool --copy ...
by weltio
Sun Feb 24, 2013 10:05 pm
Forum: Graphics, Figures & Tables
Topic: Additional Space after every n-th Table Row
Replies: 0
Views: 1757

Additional Space after every n-th Table Row

Hello.

Is there a comfortable way to get some additional space (e.g. 5pt or \newline) after every 10th line in a table? Or do I have to insert it manually?
by weltio
Thu Dec 27, 2012 2:05 pm
Forum: General
Topic: lstlisting in NewDocumentEnvironment
Replies: 2
Views: 2995

lstlisting in NewDocumentEnvironment

Why don't you just use »listings« own mechanism?
Just because I'm stupid. Your solution works perfectly. Thank you!
by weltio
Tue Dec 25, 2012 3:55 am
Forum: General
Topic: lstlisting in NewDocumentEnvironment
Replies: 2
Views: 2995

lstlisting in NewDocumentEnvironment

Hello
is it possible to create a lstlisting environment which is numbered and where I get a listof command?

My try:
\documentclass{book}
\usepackage{xparse,tocloft,listings}


\newcommand{\codelist}{Codelist}
\newlistof{code}{cod}{\codelist}
\NewDocumentEnvironment{code}{m}
{
\begin{lstlisting ...