Graphics, Figures & Tables ⇒ Text next to a circle
-
- Posts: 3
- Joined: Sun Jan 01, 2023 5:16 pm
Text next to a circle
I'm wanting to create a section on a sheet that has choice circles on the left and text on the right and I have no idea where to start or if this is even possible in LaTeX. Any help would be greatly appreciated.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
Text next to a circle
Hi,
welcome to the forum!
Here is one of the possibilities:
Stefan
welcome to the forum!
Here is one of the possibilities:
Code: Select all
\documentclass{article}
\renewcommand{\labelitemi}{\Large$\circ$}
\begin{document}
\begin{itemize}
\item First
\item Second
\item Third
\end{itemize}
\end{document}
LaTeX.org admin
-
- Posts: 3
- Joined: Sun Jan 01, 2023 5:16 pm
Text next to a circle
That works perfectly! Thank you for the help. Is there any way that the circles could be a little bit bigger?
- Stefan Kottwitz
- Site Admin
- Posts: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
Text next to a circle
A bit bigger:
A larger size would affect the list appearance.
Stefan
Code: Select all
\renewcommand{\labelitemi}{\LARGE$\circ$}
Stefan
LaTeX.org admin
-
- Posts: 3
- Joined: Sun Jan 01, 2023 5:16 pm
Text next to a circle
Thank you very much for your help.