Search found 12 matches

by crobar
Wed Jun 20, 2012 3:12 pm
Forum: General
Topic: Build Profiles "LaTeX -> HTML" and "LaTeX -> RTF"
Replies: 6
Views: 41034

Build Profiles "LaTeX -> HTML" and "LaTeX -> RTF"

In case anyone is interested I have now successfully got a system working that lets you use TeXnicCenter (TXC) for this. I have done the following:


First create a "latex2html.bat" file which I put somewhere on the Windows path which has the following contents:
REM @echo off
REM - windows batch ...
by crobar
Tue Nov 01, 2011 1:02 pm
Forum: Graphics, Figures & Tables
Topic: Vertical and horizontal Alignment in Table Cells with Image
Replies: 1
Views: 8828

Vertical and horizontal Alignment in Table Cells with Image

Hi,

I have a table which contains images (tikzpicture) in one column. I would like the first column to have text centred vertically and horizontally. I would like the second column to have text left justified and centred vertically. I would like the third column to contain a small image centred ...
by crobar
Fri Apr 22, 2011 6:36 pm
Forum: Graphics, Figures & Tables
Topic: \multicolumn stretches last column on row below
Replies: 2
Views: 3400

Re: \multicolumn stretches last column on row below

That works perfectly, thanks!
by crobar
Fri Apr 22, 2011 3:46 pm
Forum: Graphics, Figures & Tables
Topic: \multicolumn stretches last column on row below
Replies: 2
Views: 3400

\multicolumn stretches last column on row below

Hello,

I want to make a table with a heading row which has two cells, one spanning one column, and the other spanning another four rows. The code for the table is shown below:

\documentclass{report}

\usepackage{booktabs}

\begin{document}


\begin{table}
%\begin{minipage}[b]{0.5\linewidth ...
by crobar
Tue Oct 12, 2010 10:28 am
Forum: Graphics, Figures & Tables
Topic: automatic subfig figure arrangement (like subfigure)
Replies: 4
Views: 2557

automatic subfig figure arrangement (like subfigure)

Thanks, you're right, adding an \hspace{0}, as in the following code gave me the same results!


\begin{figure}
\subfloat[a float]{
\begin{tikzpicture}
\draw (0,0) rectangle (6,6);
\end{tikzpicture}
}
\hspace{0}
\subfloat[another float]
{
\begin{tikzpicture}
\draw (0,0) rectangle (6,6 ...
by crobar
Mon Oct 11, 2010 11:02 pm
Forum: Graphics, Figures & Tables
Topic: automatic subfig figure arrangement (like subfigure)
Replies: 4
Views: 2557

automatic subfig figure arrangement (like subfigure)

Hello,

thanks for replying. Sorry for not supplying a minimal example, in this case I thought my problem was rather generic, so either someone would know the answer immediately or they would not.

Below is an example with lorem ipsum to demostrate what I mean

\documentclass[twocolumn]{report ...
by crobar
Mon Oct 11, 2010 2:43 pm
Forum: Graphics, Figures & Tables
Topic: automatic subfig figure arrangement (like subfigure)
Replies: 4
Views: 2557

automatic subfig figure arrangement (like subfigure)

Hello,

I am writing a scientific paper which I would like to view in both single column and double column format. I have a number of figures in the paper, some of which I wish to arrange as subfigures.

I had been using the old subfigure package to achieve this which was working fine, but had come ...
by crobar
Wed Jul 07, 2010 1:18 pm
Forum: Graphics, Figures & Tables
Topic: how to nicely wrap and center text in table cell?
Replies: 2
Views: 35397

how to nicely wrap and center text in table cell?

Hello,

Can anyone tell me how to horizontally center the wrapped text in the second header cell of the table in the following example without screwing up the row height or otherwise making it look ugly? I just can't figure it out. In general, is it possible wrap text in one table cell, center it ...