Search found 23 matches

by isharp2
Wed Sep 05, 2012 5:26 am
Forum: Graphics, Figures & Tables
Topic: tabularx | Unwanted additonal Padding in Column
Replies: 1
Views: 3274

tabularx | Unwanted additonal Padding in Column

Hi,
so it turns out that using:


\label


adds a return character in the cell of your table. So to fix it, put your label at the end of the last column :)
MWE below.


\documentclass{article}
\usepackage{tabularx}

\begin{document}

\section{Appendix}
APPENDIX TIME.

\begin{table}[ht!]
\caption ...
by isharp2
Wed Sep 05, 2012 3:14 am
Forum: Graphics, Figures & Tables
Topic: tabularx | Unwanted additonal Padding in Column
Replies: 1
Views: 3274

tabularx | Unwanted additonal Padding in Column

Hi,
I would like all text in tabularx columns to be located at the same y-position on the page.
I find that using tabular X causes the second column to be padded, while the first column is not padded.

Working example:


\documentclass{article}
\usepackage{tabularx}

\begin{document}

\section ...
by isharp2
Mon Sep 03, 2012 4:56 am
Forum: Graphics, Figures & Tables
Topic: Figure before table places table in center of page
Replies: 4
Views: 3956

Figure before table places table in center of page

Thanks Stefan,
You're the man. So I'm posting a working example below:




\documentclass{article}
\usepackage{graphicx}
\usepackage{tabularx}

\makeatletter
\setlength{\@fptop}{0pt}
\makeatother


\begin{document}


\section{This}
\subsection{That}
this is something to consider.

\begin{table ...
by isharp2
Fri Aug 31, 2012 5:17 am
Forum: Graphics, Figures & Tables
Topic: Figure before table places table in center of page
Replies: 4
Views: 3956

Figure before table places table in center of page

Hi Stefan,
Thanks for your input - I am finding the second table still in the center of the page though ..

\documentclass{article}
\usepackage{graphicx}
\usepackage{tabularx}



\begin{document}


\section{This}
\subsection{That}
this is something to consider.

\begin{table}[htbp!]
\centering ...
by isharp2
Mon Aug 27, 2012 6:21 pm
Forum: Graphics, Figures & Tables
Topic: Figure before table places table in center of page
Replies: 4
Views: 3956

Figure before table places table in center of page

Hi,
I find that if I have a table of an image, before outputting a table of a tabularx, that the second table gets placed on the next page in the center, instead of at the top, though I use [Ht!].

I would like if the two tables appear snuggly together on the second page toward the top of the page ...
by isharp2
Wed Apr 18, 2012 7:16 pm
Forum: Graphics, Figures & Tables
Topic: Referencing a row in a table
Replies: 2
Views: 6035

Re: Referencing a row in a table

perfect! Thanks for you reply.
by isharp2
Thu Apr 12, 2012 1:19 am
Forum: Graphics, Figures & Tables
Topic: Referencing a row in a table
Replies: 2
Views: 6035

Referencing a row in a table

Hi,
I would like to reference a row in a table. Where, for example, the 3rd row of table 2 would output [2.3].

Below is some code that sets up a counter and outputs the references and outputs the row of the table, but does not preface it with the table number.


\documentclass{article}
\usepackage ...
by isharp2
Fri Apr 06, 2012 6:11 pm
Forum: Graphics, Figures & Tables
Topic: Putting wide Table in Center of Page
Replies: 2
Views: 51857

Putting wide Table in Center of Page

Hi, I'm trying to put a table in the center of the page so that both sides of the table are equidistant to the side borders of the paper.

I tried both \centering and \begin{center}, but the table just trails off to the right.


\documentclass{article}
\usepackage{tabularx}
\usepackage{multirow ...
by isharp2
Tue Apr 03, 2012 6:09 pm
Forum: Graphics, Figures & Tables
Topic: colortbl | Row Color for fixed Width Columns fails
Replies: 4
Views: 5588

colortbl | Row Color for fixed Width Columns fails

Below is a minimum working example:


\documentclass{article}
\usepackage{graphicx}
\usepackage{array} %For different font sizes in tabular
\usepackage{color}
\usepackage{titlesec} %Re-colors title sections
\usepackage{colortbl} %puts colors in tables
\definecolor{tablecolor}{rgb}{1,1,0.8}
\begin ...