General ⇒ I'm having problems with spaces and tabbings
-
- Posts: 2
- Joined: Wed Apr 02, 2008 3:38 pm
I'm having problems with spaces and tabbings
I'm having a little problem with tabbings and spaces...
In first place, I need to know how to avoid the tabbing that the first line in all documents have... and in second place I need to know how can I use tabbings at the beggining of the line.. like this:
I write here
and then here
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
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
I'm having problems with spaces and tabbings
you may use \noindent for suppressing the paragraph indentation, and \indent to add an indentation. A small example:
Code: Select all
\documentclass[a4paper,10pt]{article}
\begin{document}
\noindent text text text
\noindent text text text\\
\indent text text text
text text text
\end{document}
Code: Select all
\setlength{\parindent}{value}
-
- Posts: 2
- Joined: Wed Apr 02, 2008 3:38 pm
I'm having problems with spaces and tabbings
Stefan_K wrote:Hi,
you may use \noindent for suppressing the paragraph indentation, and \indent to add an indentation. A small example:You can change the length of paragraph indentation by changing \parindent:Code: Select all
\documentclass[a4paper,10pt]{article} \begin{document} \noindent text text text \noindent text text text\\ \indent text text text text text text \end{document}
StefanCode: Select all
\setlength{\parindent}{value}
Thanks so much!!