New MembersNew member greetings

You would like to introduce yourself before starting to post? That's a nice idea and here is the forum for you...
Post Reply
pdebitetto
Posts: 2
Joined: Sun Nov 22, 2009 9:19 pm

New member greetings

Post by pdebitetto »

Hi everyone,
i just joined the forum. I'm writing my PhD thesis and am going to use LaTex but am relatively new to it.. I found i could spend an enormous amount of time digging through the manual trying to find out how to do something when a smarter approach may be to ask the experts!!

i haven't searched the archives yet but i'll throw my latest question out there... I just want to enclose a numerical list (enumerate) in a Box!!I don't think i can do this with \framebox or \makebox, those only seem to work with text.. I thought perhaps \minipage but have not been successful yet...

Look forward to participating here..
Paul

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

New member greetings

Post by frabjous »

Depending on your demands, something as simple as the following works (using framed package):

Code: Select all

\documentclass{article}
\usepackage{framed}
\begin{document}
\begin{framed}
\begin{enumerate}
\item List item 1.
\item List item 2.
\end{enumerate}
\end{framed}
\end{document}
pdebitetto
Posts: 2
Joined: Sun Nov 22, 2009 9:19 pm

Re: New member greetings

Post by pdebitetto »

yikes... i'm embarrased how easy that was.. i guess i wasn't looking at info on the framed package...
Thanks for setting me straight..
Much Appreciated!
Paul
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: New member greetings

Post by localghost »

Now that you have your first issue solved please post other future requests in an appropriate forum. This forum here is exclusively for a short introduction of the users.


Best regards and welcome to the board
Thorsten¹
meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

Re: New member greetings

Post by meho_r »

Hi, pdebitetto, and welcome :)
Post Reply