Search found 19 matches

by CDbile
Fri Feb 03, 2012 11:34 pm
Forum: BibTeX, biblatex and biber
Topic: Convert Bibliography Item to BibTeX Format
Replies: 1
Views: 9408

Convert Bibliography Item to BibTeX Format

Hello all,

I'd like to know if there is some tool (script/program/package/whatever) to convert a raw bibliography in LaTeX (with \bibitem entries) to a more usable BibTeX format?
by CDbile
Fri Nov 18, 2011 9:12 am
Forum: Text Formatting
Topic: linebreak problem
Replies: 3
Views: 5553

linebreak problem

Hi,

I don't have a direct solution to your problem but I think you should consider using the wrapfig package, which does exactly what you want in a very simpler way.
by CDbile
Thu Nov 10, 2011 4:21 pm
Forum: Graphics, Figures & Tables
Topic: Vertical and horizontal centering of full size image
Replies: 6
Views: 16806

Vertical and horizontal centering of full size image

Is this code:

\documentclass{article}
\usepackage{graphicx}
\usepackage{lipsum}

\begin{document}

\lipsum[1-2]

\begin{figure}[p]\centering
\vfill
\caption{Full Size Table}
\includegraphics[angle=90]{img}
\vfill
\end{figure}

\lipsum[1-2]

\end{document}

the code that you are looking for?
(note ...
by CDbile
Wed Nov 09, 2011 12:43 pm
Forum: Text Formatting
Topic: Align Counters and Equations side-by-side
Replies: 17
Views: 13448

Re: Align Counters and Equations side-by-side

Of course, and I'm also sure that you can find where to put the two stars...
by CDbile
Wed Nov 09, 2011 1:23 am
Forum: Text Formatting
Topic: Align Counters and Equations side-by-side
Replies: 17
Views: 13448

Re: Align Counters and Equations side-by-side

I suggest you start a new topic for this question and mark this thread as solved (if you agree it is !)
But I also don't see why you wouldn't have default values of enumerate in custenv. We just put an enumerate in a minipage, we didn't change any special layout.
by CDbile
Tue Nov 08, 2011 9:45 pm
Forum: Text Formatting
Topic: Align Counters and Equations side-by-side
Replies: 17
Views: 13448

Align Counters and Equations side-by-side

You didn't understand me. You can here: (code quoted from the big \newenvironment line)

Code: Select all

\begin{enumerate}[##1,start=##2+\value{custcount}]
% Put your list parameters here
\item ##3
\end{enumerate}
by CDbile
Tue Nov 08, 2011 7:16 pm
Forum: Text Formatting
Topic: Align Counters and Equations side-by-side
Replies: 17
Views: 13448

Re: Align Counters and Equations side-by-side

Well you can set these parameters between \begin{enumerate} and \end{enumerate} in the environment definition.
by CDbile
Tue Nov 08, 2011 8:48 am
Forum: Text Formatting
Topic: Align Counters and Equations side-by-side
Replies: 17
Views: 13448

Align Counters and Equations side-by-side

In the custenv environment, just add [t] after \tabular :

Code: Select all

\tabular[t]{#1}}{\endtabular}
by CDbile
Sun Nov 06, 2011 12:31 am
Forum: Text Formatting
Topic: Vertically aligned Graphs
Replies: 1
Views: 1441

Vertically aligned Graphs

You don't really need a subfigure command here :

\documentclass{article}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{lipsum}

\begin{document}
\lipsum[1-2]

\begin{figure}[p]\centering
\framebox{First figure}
\caption{caption}

\framebox{Second figure}
\caption{caption}

\framebox{Third ...
by CDbile
Sat Nov 05, 2011 6:04 pm
Forum: Text Formatting
Topic: Align Counters and Equations side-by-side
Replies: 17
Views: 13448

Align Counters and Equations side-by-side

Is % necessary for something?

Here, they're not, sometimes they are when every space is important, so I put them "just in case" when I test things :).

wow that's really close to something that I wanted.. HOWEVER!!!! I made another one like that except my codes is soooo different from yours ...