Search found 26 matches

by jazzgossen
Thu Jun 27, 2013 3:04 pm
Forum: General
Topic: Placement of marginal Notes
Replies: 4
Views: 10235

Placement of marginal Notes

I just thought of a workaround. Using \hspace{0pt} right before \marginpar{Margin} produces the desired result.

Code: Select all

\documentclass{article}
\usepackage{blindtext}

\begin{document}
  \blindtext

  \hspace{0pt}\marginpar{Margin}%
  \blindtext
\end{document}
by jazzgossen
Thu Jun 27, 2013 11:33 am
Forum: General
Topic: Placement of marginal Notes
Replies: 4
Views: 10235

Placement of marginal Notes

have a question regarding the placement of content in \marginpar commands. In the following document, I would expect the marginal comment to be aligned with the first row of the second paragraph. Instead, it is aligned with the last line of the first paragraph.

Why is that, and is there a good way ...
by jazzgossen
Sun Oct 16, 2011 11:37 am
Forum: Graphics, Figures & Tables
Topic: Prevent Floats on top of first Page
Replies: 3
Views: 2684

Prevent Floats on top of first Page

As always, you should clarify the issue by a minimal example.
Ah yes, good point... It appears that the problem has to do with the way \maketitle is defined in my documentclass.

Sorry for the noise.
by jazzgossen
Sat Oct 15, 2011 5:31 pm
Forum: Graphics, Figures & Tables
Topic: beamer | Graphics Placement
Replies: 1
Views: 2427

beamer | Graphics Placement

Sounds like \overlayarea is what you're looking for.

Code: Select all

\begin{overlayarea}{\textwidth}{3cm}
	\only<1>{\includegraphics{xxx}}
	\only<2>{\includegraphics{yyy}}
\end{overlayarea}
Would that work?
by jazzgossen
Fri Oct 14, 2011 2:25 pm
Forum: Graphics, Figures & Tables
Topic: Prevent Floats on top of first Page
Replies: 3
Views: 2684

Prevent Floats on top of first Page

Is there a way to prevent floats at the top of the first page of a document (or the first page of a chapter), other than moving the float environment to later in the document, or giving it a [p] placement, etc?

Ideally, I'd like a way to specify in the document class not to have floats above the ...
by jazzgossen
Thu Mar 17, 2011 12:58 am
Forum: Document Classes
Topic: Different fonts in math and text for IEEEconf class
Replies: 6
Views: 10010

Different fonts in math and text for IEEEconf class

localghost wrote: Adding the txfonts package has the result shown in my first reply.
Perfect! That's it!
by jazzgossen
Thu Mar 17, 2011 12:02 am
Forum: General
Topic: Error mesage
Replies: 4
Views: 5186

Re: Error mesage

Just wanted to say that I still have this problem on Ubuntu 10.04.
by jazzgossen
Wed Mar 16, 2011 11:41 pm
Forum: Document Classes
Topic: Different fonts in math and text for IEEEconf class
Replies: 6
Views: 10010

Different fonts in math and text for IEEEconf class

Update:
I shouldn't actually use the current IEEEconf class, but rather
\usepackage[conference]{IEEEtran}
After using that and installing the IEEEtran version of Ubuntu 10.04, I get the following output from \listfiles:
*File List*
IEEEtran.cls 2007/03/05 V1.7a by Michael Shell
ot1ptm.fd 2001/06 ...
by jazzgossen
Wed Mar 16, 2011 11:24 pm
Forum: Document Classes
Topic: Different fonts in math and text for IEEEconf class
Replies: 6
Views: 10010

Different fonts in math and text for IEEEconf class

Thanks for the hint about \listfiles. With the provided test document above, I get
*File List*
../styles/ieeeconf.cls
ot1ptm.fd 2001/06/04 font definitions for OT1/ptm.
***********

and nothing more. And looking at my "ieeeconf.cls", the comment at the top of the file says "IEEEtran.cls 2002/11 ...
by jazzgossen
Tue Mar 15, 2011 11:30 pm
Forum: Document Classes
Topic: Different fonts in math and text for IEEEconf class
Replies: 6
Views: 10010

Different fonts in math and text for IEEEconf class

I'm preparing an IEEE conference paper, and the math fonts in my document are not the same as in the text, which annoys me.

Consider the following test document
\documentclass[letterpaper, 10pt, conference]{ieeeconf}
\begin{document}
r$r$\emph{r}
\end{document}
I would expect the last two 'r ...