New Members ⇒ New member greetings
-
- Posts: 2
- Joined: Sun Nov 22, 2009 9:19 pm
New member greetings
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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
New member greetings
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}
-
- Posts: 2
- Joined: Sun Nov 22, 2009 9:19 pm
Re: New member greetings
Thanks for setting me straight..
Much Appreciated!
Paul
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: New member greetings
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: New member greetings
