General ⇒ horizontal line separator
horizontal line separator
This is usually used to separate the introduction from the main text,
or to separate poems.
You know?
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
horizontal line separator
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: horizontal line separator
I mean this:
In some of the books the text is organized liked this:
bla bla bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla
-------
Thefore bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla
or like this
bla bla bla bla bla bla
bla bla bla bla bla bla
bla bla bla bla bla bla
****
bla bla bla bla bla bla
bla bla bla bla bla bla
bla bla bla bla bla bla
You know what i mean now?
I don't even know how is this called. (paragraph separator? )
The line and the stars should be in the centred. (I wasn't able to do that in this reply)
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
horizontal line separator
perhaps there's a package aimed at this. Here's an example how you could do it by yourself:
Code: Select all
\documentclass[a4paper,10pt,english]{article}
\usepackage{babel}
\usepackage{blindtext}
\setlength{\parindent}{0pt}
\newcommand*\sepline{%
\begin{center}
\rule[1ex]{.5\textwidth}{.5pt}
\end{center}}
\newcommand*\sepstars{%
\begin{center}
$\star\star\star$
\end{center}}
\begin{document}
\blindtext
\sepline
\blindtext
\sepstars
\blindtext
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
horizontal line separator
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage[centering,includeheadfoot,margin=2cm]{geometry}
\usepackage{txfonts}
\usepackage{blindtext}
\parindent0em
\begin{document}
\blindtext
\bigskip
\centerline{**********}
\bigskip
\blindtext
\end{document}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
horizontal line separator
Code: Select all
\centerline
Thank you!
Is there a proper name for this?
So, that the editor can change the line(or stars) to whatever symbol is preferred by the publisher.
How long should this line (stars) be? Is there a standard for this?
Thanks