Text Formatting ⇒ changing section title format
changing section title format
Id like to have it so under (the next line) the title is a bunch of = signs. I know it sounds a bit weird but it will come in handy oddly enough.
So something like:
Section Title
========
Thanks
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: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
changing section title format
you could use ulem or the soul package:
Code: Select all
\usepackage{titlesec}
\usepackage[normalem]{ulem}
\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{\uuline}Re: changing section title format
Thanks
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
changing section title format
Code: Select all
\newcommand\equalsigns{\bgroup\markoverwith{\raisebox{-1.1ex}{=}}\ULon}
\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{\equalsigns}Re: changing section title format
Thanks alot!
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
changing section title format
Code: Select all
\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{}[==== ... ====]