Search found 10 matches

by c0nny
Thu Aug 21, 2008 6:52 pm
Forum: Document Classes
Topic: ChicagoReedWeb, suppress underscores?
Replies: 0
Views: 1470

ChicagoReedWeb, suppress underscores?

Hi,

I'm using ChicagoReedWeb as my bibliography style.
Is there a way to prevent these underscores that replace the author name when an author has more than one publication??

Conny
by c0nny
Sat Aug 16, 2008 8:16 pm
Forum: Document Classes
Topic: customised float numbering
Replies: 2
Views: 2435

Re: customised float numbering

that works! :)


thank you!
by c0nny
Sat Aug 16, 2008 6:44 pm
Forum: Document Classes
Topic: customised float numbering
Replies: 2
Views: 2435

customised float numbering

Hi,

I defined a float

\newfloat{sentences}{th}{los}[chapter]

and I want to change its numbering in the Appendix like I did for figures and tables

\renewcommand\thefigure{B-\arabic{figure}}
\renewcommand\thetable{B-\arabic{table}}

How does that work for customised floats?


Conny
by c0nny
Wed Jul 30, 2008 7:25 pm
Forum: General
Topic: Page numbers on certain pages
Replies: 2
Views: 2776

Re: Page numbers on certain pages

seems like I found it myself

I change the definition of \fancypagestyle{plain}

\fancypagestyle{plain}{%
\fancyhead{} %get rid of the headers on plain pages
\renewcommand{\headrulewidth}{0.0pt} % and the line
\fancyfoot[C]{\thepage}
}

and change it back to

\fancypagestyle{plain}{%
\fancyhead ...
by c0nny
Wed Jul 30, 2008 5:34 pm
Forum: General
Topic: Page numbers on certain pages
Replies: 2
Views: 2776

Page numbers on certain pages

Hi there,

I'm using the following document class and header style

\documentclass[12pt, a4paper, titlepage, twoside, openany]{book}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}

\fancyhead[LO]{{\footnotesize\sffamily\itshape\rightmark}}
\fancyhead[LE]{{\footnotesize\sffamily\itshape ...
by c0nny
Mon Jul 14, 2008 8:54 pm
Forum: Document Classes
Topic: Positioning of tables
Replies: 5
Views: 5018

Re: Positioning of tables

sure, sorry, I wasn't concentrating ;)

now it works! Thanks!
by c0nny
Mon Jul 14, 2008 8:30 pm
Forum: Document Classes
Topic: Positioning of tables
Replies: 5
Views: 5018

Re: Positioning of tables

Thanks, the table is now at the top of the page. I then added another table to this page and with

\makeatletter
\setlength\@fptop{0pt}
\setlength\@fpsep{20pt plus 2pt minus 2pt}
\setlength\@fpbot{0pt}
\makeatother

one is at the top and one at the bottom. This remains when I remove the "fpsep ...
by c0nny
Mon Jul 14, 2008 11:25 am
Forum: Document Classes
Topic: Positioning of tables
Replies: 5
Views: 5018

Positioning of tables

Hi,

I have a question about positioning of tables.
Why is a table on an otherwise empty page placed in the middle of the page and not at the top as I try to do with [ht] ?
How can I change this behaviour?

Conny
by c0nny
Sat Jun 28, 2008 7:57 pm
Forum: Document Classes
Topic: How to define a new float style?
Replies: 3
Views: 6998

Re: How to define a new float style?

Thanks,

the floatrow package actually lets me do what I want.

In case somebody wants to know:

\includepackage{floatrow}

\DeclareFloatStyle{MyRuled}{
capposition=top,
midcode=rule,
postcode=lowrule,
heightadjust=all}

\newfloat{sentences}{th}{los}[chapter]
\floatname{sentences}{Example sentences ...
by c0nny
Sat Jun 28, 2008 5:48 pm
Forum: Document Classes
Topic: How to define a new float style?
Replies: 3
Views: 6998

How to define a new float style?

Hi,

I have a question on defining an own float style (not sure if this is the right place to post it, I'm new here). I want to have a ruled float but with two rules only instead of three (without the upper rule).
I tried to add the following to my preamble but I'm getting errors (Missing \begin ...