Search found 26 matches

by sdaau
Sun Apr 10, 2011 9:37 pm
Forum: General
Topic: figure* at the bottom of the page
Replies: 6
Views: 68521

figure* at the bottom of the page

Hi Stefan_K, all,

Thanks for a very nice example! I too am having a problem with figure* at bottom of page, and I managed to rework your example into a MWE that demonstrates this problem:


\documentclass[a4paper,10pt,twocolumn]{article}
\usepackage{graphicx,dblfloatfix}
\usepackage[english ...
by sdaau
Thu Feb 24, 2011 11:40 pm
Forum: General
Topic: Appendices conflict with minitoc:no prefix for article class
Replies: 1
Views: 2395

Appendices conflict with minitoc:no prefix for article class

Ok, a temporary workaround for me is to conditionally load minitoc, only if appendix is not defined beforehand:

\usepackage{appendix}

% conditional load: check if appendix is loaded by checking if \appendixtocon is defined; if so, do not load minitoc
\ifdefined\appendixtocon
\else
\usepackage ...
by sdaau
Thu Feb 24, 2011 10:48 pm
Forum: General
Topic: Appendices conflict with minitoc:no prefix for article class
Replies: 1
Views: 2395

Appendices conflict with minitoc:no prefix for article class

Hi all,

Consider the following MWE:

\documentclass{article}

\usepackage{url}
\usepackage[breaklinks]{hyperref}
\usepackage{appendix}
\usepackage{minitoc}
\usepackage{appendix}



\begin{document}

\tableofcontents

\bigskip

\section{My Section 1}

Blahblah...

\subsection{My SubSection 1 ...
by sdaau
Tue Feb 22, 2011 4:43 pm
Forum: Fonts & Character Sets
Topic: Greek unicode in pdflatex (unavailable in encoding T1.)..
Replies: 2
Views: 21138

Greek unicode in pdflatex (unavailable in encoding T1.)..

Ok, "textgreek" seems to be the answer - as this compiles:


\documentclass{minimal}

\usepackage{lmodern}
\usepackage[utf8x]{inputenx} %
\usepackage[LGR, T1]{fontenc}
\usepackage{textcomp} % defines \textmu, which is now what inputenx seems to use for μ - probably due inpmath.. also \textdegree ...
by sdaau
Tue Feb 22, 2011 4:01 pm
Forum: Fonts & Character Sets
Topic: Greek unicode in pdflatex (unavailable in encoding T1.)..
Replies: 2
Views: 21138

Greek unicode in pdflatex (unavailable in encoding T1.)..

Hi all,

Please consider this MWE:

\documentclass{minimal}

\usepackage{lmodern}
\usepackage[utf8x]{inputenx} %
\usepackage[LGR, T1]{fontenc}
\usepackage{textcomp} % defines \textmu, which is now what inputenx seems to use for μ - probably due inpmath.. also \textdegree... but not \textrho ...
by sdaau
Sat Feb 05, 2011 8:57 pm
Forum: General
Topic: Option clash of [demo]{graphicx} and {url}?
Replies: 3
Views: 6105

Re: Option clash of [demo]{graphicx} and {url}?

Hi frabjous and localghost,

Just wanted to say thanks for the prompt and quick response! I have tried \usepackage[demo]{epsfig} with the original style file too, works perfect!

Thanks again,
Cheers!
by sdaau
Sat Feb 05, 2011 7:38 am
Forum: General
Topic: Option clash of [demo]{graphicx} and {url}?
Replies: 3
Views: 6105

Option clash of [demo]{graphicx} and {url}?

Hi all,

I had to write an article in a class derived (apparently) from SIG-ALTERNATE.CLS/ACM_PROC_ARTICLE-SP.CLS. Then, I wanted to build a version without images, so I wanted to use the [demo] option of {graphicx} package. Interestingly, as soon as I tried that, Latex 'crashed' with 'option clash ...
by sdaau
Mon Jan 31, 2011 12:46 am
Forum: Graphics, Figures & Tables
Topic: Tikz: Using matrix and foreach?
Replies: 3
Views: 6271

Tikz: Using matrix and foreach?

Hi all,

Well, finally here is a syntax that does compile:

\usetikzlibrary{shapes.arrows,chains,positioning}

\begin{tikzpicture}[font=\tt]
% NOTE: matrix generates '! Missing } inserted.' for:
% * ANY line-ends inside - make sure to comment empty lines!
% * if it is completely empty (i.e ...
by sdaau
Sat Jan 29, 2011 2:39 pm
Forum: General
Topic: Pdflatex: how to insert arbitrary PDF code (img interpolate)
Replies: 1
Views: 4035

Pdflatex: how to insert arbitrary PDF code (img interpolate)

Just a brief update - I looked into the pdftex users manual http://sarovar.org/docman/view.php/106/66/pdftex-s.pdf ; and found:

Literals and specials
\pdfliteral [ pdfliteral spec ] general text
Like \special in normal TEX, this command inserts raw pdf code into the output.


... and generating ...
by sdaau
Wed Jan 26, 2011 10:05 pm
Forum: General
Topic: Pdflatex: how to insert arbitrary PDF code (img interpolate)
Replies: 1
Views: 4035

Pdflatex: how to insert arbitrary PDF code (img interpolate)

Hi all,

Here is a MWE:


% test.tex
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=0.5\linewidth]{../img/mytest.png}
\end{document}


where the .png is, say, a screenshot showing text...

When I compile this with `pdflatex test.tex`, and ...