Created
April 23, 2015 06:39
-
-
Save pydanny/7440c244e56f2538e4cf to your computer and use it in GitHub Desktop.
Revisions
-
pydanny created this gist
Apr 23, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ Had a problem with one of our chapter titles having a carriage return in the TOC. Just fixed it! How? Changed the chapter header from ``` latex \chapter{Fundamentals of Django App \\ Design} ``` to ``` latex \chapter*{Fundamentals of Django App \\ Design} \addcontentsline{toc}{chapter}{Fundamentals of Django App Design} ``` Hooray LaTeX!