Text FormattingCustomized enumerated Lists

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
BMay
Posts: 3
Joined: Fri May 03, 2013 1:12 pm

Customized enumerated Lists

Post by BMay »

How to circle the correct answer or how to make the number or letter inside the circle? In question two, let's assume today is Friday, and how to circle only c? How to circle a and b, and not c? All others numbering and itemized question keep in original form.
screenshot.png
screenshot.png (19.17 KiB) Viewed 7560 times
Attachments
questions.pdf
(30.32 KiB) Downloaded 450 times
Last edited by cgnieder on Sat May 04, 2013 1:59 pm, edited 1 time in total.

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Customized enumerated Lists

Post by localghost »

A search in the forum should yield ready-to-use solutions for numbers or letters in circles. For customized questions and answers you may look at packages like esami, exsheets or probsoln. Complete exams may be written with the exam class.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Customized enumerated Lists

Post by cgnieder »

Hi BMAy,

Welcome to the LaTeX community!

Besides the very useful hints from Thorsten: in order to give you a qualified answer we should see some compilable code, i.e., a Infominimal working example. The best solutions may very well depend upon how you're creating the multiple choice questions. So: how did you create the PDF?

Regards
site moderator & package author
BMay
Posts: 3
Joined: Fri May 03, 2013 1:12 pm

Customized enumerated Lists

Post by BMay »

cgnieder wrote:Hi BMAy,

Welcome to the LaTeX community!

Besides the very useful hints from Thorsten: in order to give you a qualified answer we should see some compilable code, i.e., a Infominimal working example. The best solutions may very well depend upon how you're creating the multiple choice questions. So: how did you create the PDF?

Regards
I made it like this:

Code: Select all

\documentclass[11pt]{article}
\begin{document}
\begin{enumerate}
\item{\bf Question}
\begin{itemize}
\item[a)] answer 1 
\item[b)] answer 2
\end{itemize}
\end{enumerate}
\end{document}
Regards.
Last edited by cgnieder on Sat May 04, 2013 10:59 pm, edited 1 time in total.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Customized enumerated Lists

Post by cgnieder »

Ok, so you're simply using standard LaTeX lists. In this case Thorsten advice for a forum search on circled numbers and maybe a look on the enumitem package should help you.

As an aside: \bf shouldn't really be used in LaTeX. It's been obsolete since 1992 (that's more than 20 years!), see also Does it matter if I use \textit or \it, \bfseries or \bf, etc.

Regards
site moderator & package author
BMay
Posts: 3
Joined: Fri May 03, 2013 1:12 pm

Customized enumerated Lists

Post by BMay »

cgnieder wrote:Ok, so you're simply using standard LaTeX lists. In this case Thorsten advice for a forum search on circled numbers and maybe a look on the enumitem package should help you.

As an aside: \bf shouldn't really be used in LaTeX. It's been obsolete since 1992 (that's more than 20 years!), see also Does it matter if I use \textit or \it, \bfseries or \bf, etc.

Regards
We will continue our conversation after I get more knowledge about LaTex. Until then there is no point to talk to you. Thanks to: localghost and cgnieder. Consider my problem solved.

Best regards.
Post Reply