LyX ⇒ Couple of issues with writing my thesis
Couple of issues with writing my thesis
i have a couple of questions, I'm working on my Bachelor-Thesis with LyX 1.6.9 right now.
1) How can I make the space between the text and the bottom and top of the page less?
2) How can I include my list of figures, list of tables in the list of contents? I read something about \liststotoc but when i put that in my document i only got an error
3) how can I change the numbering style for the sections?
for example i want to have:
A List of Tables
B List of Figures
1 Introduction
2 Main Section
3 Conclusion
C Appendix
D Literature
How can i do that?
I hope you guys understand what I mean with the various things...I'm using a German version of LyX so I'm not sure of the correct names for everything.
thank you!!
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: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Couple of issues with writing my thesis
Which class are you using? Which template?
Additionally, perhaps post your LyX file (without your text) here as attachment, to see all settings.
Regarding your questions:
- Change the margins using LyX's settings, geometry package features or typearea settings, if you use a KOMA-Script class.
- If you use a KOMA-Script class, set liststotoc or similar as class option or by \KOMAoption in the document preamble, with other classes you could use the tocbibind package.
- Commands like \frontmatter, \mainmatter and \backmatter can help, depending on the document class, or commands such as \pagenumbering{Alph} and \pagenumbering{arabic} for page numbers and \renewcommand*{\thesection}{\Alph{section}} for alphabetical section numbering.
Re: Couple of issues with writing my thesis
Thank you very much for your answer. I know you're trying to help but somehow I'm not able to make use of the information you gave me

- Attachments
-
- ba_leer.lyx.zip
- An example LyX file.
- (1.16 KiB) Downloaded 201 times
Re: Couple of issues with writing my thesis

-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Re: Couple of issues with writing my thesis
I'll try to answer a few of your questions:
(1) Margins are easily changed in LyX, as I recall, though as StefanK mentioned it helps to know the document class you are using. Since it's a bachelor's thesis, I'm guessing "article" is the one. Lengths like \topmargin are set automatically by the geometry package, which is how I'd recommend starting.
(2) Lists of figures should be inserted automatically by LyX, but if not (I don't use LyX, preferring to type my own LaTeX markup), the commands are \listoffigures and \listoftables. Tables of contents should be LyX-enabled as well, but that's \tableofcontents
(3) Numbering sections as letters requires commands like
\renewcommand{\thesection}{\Alph{section}} % Letters
\renewcommand{\thesection}{\Roman{section}} % Capital Roman Numerals (use \roman for lower case)
\renewcommand{\thesection}{\arabic{section}} % Arabic numerals
You can reset the counters by \setcounter{section}{1} or the like. They are often reset by the \backmatter and \frontmatter commands, however, so if you're using the report class I'd give that a try first.
Couple of issues with writing my thesis
1. Avoid using letters for "numbering" parts like LOF, LOT, TOC, Preface etc. Just leave them unnumbered.
2. To change counter to Uppercase letters for the last part of your document, you can use appendix (Document > Start Appendix Here).
3. As Stefan suggested, load tocbibind package in the Preamble (Document > Settings > LaTeX preamble):
Code: Select all
\usepackage{tocbibind}
Here's your file with couple of notes in it.
- Attachments
-
- ba_leer.16.lyx.zip
- (1.6 KiB) Downloaded 230 times