LyXFancy Chapter Headings not displayed

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
eivsemb
Posts: 1
Joined: Fri Apr 19, 2013 3:50 pm

Fancy Chapter Headings not displayed

Post by eivsemb »

So I have installed the fncychap package in MiKTeX and added this line to the preamble of the document.

Code: Select all

\usepackage[Lenny]{fncychap}
But the chapter headings do not change at all.

My document class is article, but changing to report did not solve the problem. Do I need to add more lines in the preamble or in the document itself to get it to work?

Any help is appreciated!

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

tom
Posts: 73
Joined: Thu Apr 18, 2013 4:02 am

Fancy Chapter Headings not displayed

Post by tom »

All you need to do is load the package the way you did. Using the documentclass article wouldn't make much sense though, as chapters are not supported. Check the log file for warnings.

Code: Select all

\documentclass{report}
\usepackage[Lenny]{fncychap}
\begin{document}
\chapter{Lenny chapter style}
\end{document}
Post Reply