General2 questions from a beginner

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ZexyLaTex
Posts: 2
Joined: Fri Nov 30, 2007 7:54 pm

2 questions from a beginner

Post by ZexyLaTex »

Hi LaTex enthusiasts!

I am a new user of LaTeX and want to write my Master Thesis with LaTex.
I have two questions probably typical for a beginner :)

(1) I plan to insert a box between the beginning of each chapter(Title of Chapter) and the first Section of the chapter to explain in brief the discussed material of the chapter. Probably written in a Box with boarders and with a background color for that. What is the command that I have to use? I tested

Code: Select all

\chapter{Introduction}

\paragraph
{
\begin{center}
In the first chapter the basic concept of ... and force reflecting remote commanded ...... will be provided. The applications of ....
\end{center}
}
\section{bla bla bla}


But I didn't like the outcome...

(2) And my second question is, what is the best way to prepare a cover page for thesis?


Thanks in advance

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

2 questions from a beginner

Post by gmedina »

1): you can use the xcolor package to obtain colored boxes (and many other things). For example:

Code: Select all

\documentclass{report}
\usepackage{xcolor}
\usepackage{calc}

\begin{document}
\chapter{Introduction}

\fcolorbox{gray}{yellow}{\parbox{\linewidth-3\fboxsep}{In the first chapter the basic concept of ... and force reflecting remote commanded ...... will be provided. The applications of ....}}

\end{document}
The calc package was loaded to allow the calculation of the parbox width. Read the documentation of the xcolor package to see all the options it offers.

2): There can be so many answers to this question depending on what you want for your cover page.

Since you are beginning to use LaTeX and the cover page design can wait a little, I would suggest you to get used to LaTeX first. You should consult the Comprehensive TeX Archive Network (CTAN) to find packages and their documentations.

Welcome to the LaTeX world!
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply