Search found 3 matches

by lanew
Sat Dec 17, 2011 5:05 pm
Forum: General
Topic: Dynamic Minipage Sizing
Replies: 2
Views: 9988

Dynamic Minipage Sizing

Thanks very much for your reply Stefan!

I actually just came back to post my new findings and saw your reply. I decided to go with the regular tabular environment as follows:


\documentclass[10pt]{article}
\begin{document}
\begin{tabular}{l}
Something \\
Something
\end{tabular} \hfill % Push ...
by lanew
Sat Dec 17, 2011 4:32 pm
Forum: General
Topic: Dynamic Minipage Sizing
Replies: 2
Views: 9988

Dynamic Minipage Sizing

I'm trying to format a document with two groups of text, one on the left, and one on the right with blank space in the middle. At the moment I use two minipages with \hfill in between to push one to the right. This works fine; however, if I edit the font inside the minpage environment I have to ...
by lanew
Mon Nov 21, 2011 1:01 am
Forum: Math & Science
Topic: Small \bullet
Replies: 1
Views: 31316

Small \bullet

Here's what I use, place this in the preamble:

Code: Select all

\newcommand{\sbt}{\,\begin{picture}(-1,1)(-1,-3)\circle*{3}\end{picture}\ }
You can then use it whenever you like:

Code: Select all

\begin{itemize}
\item[\sbt] First Item
\item[\sbt] Second Item
\end{itemize}
Cheers!