Search found 6 matches

by demac
Thu Jun 16, 2011 6:03 pm
Forum: Graphics, Figures & Tables
Topic: Longtable makes column width unneccesarily large
Replies: 2
Views: 5585

Re: Longtable makes column width unneccesarily large

Jeremie,

I have the same problem when one of my multicolumn headers is longer than the width of the table body. longtable will increase the width of the last column in the header part to accommodate the extra text

Hope this helps
Jeff
by demac
Mon Jun 13, 2011 4:24 pm
Forum: Graphics, Figures & Tables
Topic: combination of lscape, center and longtable is not centered
Replies: 0
Views: 1122

combination of lscape, center and longtable is not centered

I am trying to get a centered, landscape lontable with the following code
Everything is correct except that the table is flushed-left on the rotated page, not centered.
Any ideas?

Thanks in advance
Jeff


\begin{landscape}
\begin{center}
\smallertable
\begin{longtable}{llllrrrrrr}
First header ...
by demac
Wed Jun 01, 2011 2:19 pm
Forum: General
Topic: How to force expansion of a TeX counter
Replies: 2
Views: 2704

Re: How to force expansion of a TeX counter

Beauty! Simple when you see it! Thanks Stefan :)
by demac
Tue May 31, 2011 10:28 pm
Forum: General
Topic: How to force expansion of a TeX counter
Replies: 2
Views: 2704

How to force expansion of a TeX counter

I am trying to set-up code that defines a suite of commands using a \loop and \repeat structure the end results should be

\setNames{ABC}{1}{10} should result in the following commands being defined
\ABCi as ABC--1
\ABCii as ABC--2 and so on through
\ABCx as ABC--10


\documentclass[12pt]{article ...
by demac
Mon Jul 26, 2010 8:24 pm
Forum: General
Topic: token in \@for:= loop not being expanded
Replies: 1
Views: 1488

token in \@for:= loop not being expanded

I am trying to define a macro that will take a comma separated list of strings and create macros based on the string. The problem is that it does not expand the iteration variable (\@@a) in this case when put into the list.

Here is the code:
\documentclass[12pt]{article}
\usepackage{xfor}

\gdef ...
by demac
Sat Jun 19, 2010 11:23 pm
Forum: Graphics, Figures & Tables
Topic: Need to have table fill a page
Replies: 0
Views: 1525

Need to have table fill a page

I need to have a caption+table+tabular fill the page rather than being centered on the page. I am currently adjusting each table individually by putting extra space after the last line in the table

\documentclass[12pt, letterpaper]{article}
\usepackage{caption}
\usepackage{rotating}

\begin ...