Text Formatting ⇒ Put a point in front of text
Put a point in front of text
Could you tell me how can I put a square or round point in front of a line and how make a tabulation betwean point and text?
Thank you
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Put a point in front of text
use an itemize environment, such as
Code: Select all
\documentclass{article}
\begin{document}
\begin{itemize}
\item One
\item Two
\item Three
\end{itemize}
\end{document}
Re: Put a point in front of text
\begin{tabular}{llll}
\begin{itemize}
\item text
\end{itemize} &
\includegraphics[scale=1]{image009.png}&
text
\end{tabular}
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Put a point in front of text
For example:
Code: Select all
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{array}
\begin{document}
\begin{tabular}{m{2cm}ll}
\begin{itemize}
\item text
\end{itemize} &
\raisebox{-.5\height}{\includegraphics[scale=1]{image009.png}}&
text
\end{tabular}
\end{document}
Stefan
Put a point in front of text
Code: Select all
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{array}
\begin{document}
\begin{tabular}{m{2cm}ll}
\begin{itemize}
\item text text
\end{itemize} &
\raisebox{-.5\height}{\includegraphics[scale=0.5]{image015.png}}&
text
\end{tabular}
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Put a point in front of text
Stefan
Put a point in front of text
Yes, So I should calculate the number of words in the text?Do you mean the line break? Just make the 2cm wider, such as m{3cm}.
Stefan
Isn't there easier way ?
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Put a point in front of text
Code: Select all
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{array}
\begin{document}
\begin{tabular}{lll}
$\bullet$ text text
&
\raisebox{-.5\height}{\includegraphics[scale=0.5]{image015.png}}&
text
\end{tabular}
\end{document}