Text FormattingAlignment

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
vinaykumarn
Posts: 15
Joined: Wed Oct 19, 2016 6:30 am

Alignment

Post by vinaykumarn »

Sir,

The following are doubts w.r.t .cls file:

1. How to align the "contents" text to right side of the page
2. How to give horizontal lines after "chapter 1" and before "chapter name" in first chapter (or corresponding chapter in general).
3. Similarly how to align the "chapter 1" and "chapter name" to right side of the page beside to page number.

Please solve and oblige

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Alignment

Post by Johannes_B »

Please post a minimal working example.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Alignment

Post by Stefan Kottwitz »

Welcome to the forum!

We don't know which class file you use. Please tell us the name of the class, and it would be meaningful to post a code example of your document to change. Link: Infominimal working example.

Stefan
LaTeX.org admin
vinaykumarn
Posts: 15
Joined: Wed Oct 19, 2016 6:30 am

Alignment

Post by vinaykumarn »

Dear Sir,
Thanks for your suggestions and comments...!
The class file I am using is MastersDoctoralThesis file.
ghuczek
Posts: 23
Joined: Sun Dec 23, 2012 8:09 pm

Alignment

Post by ghuczek »

What is the XXXXX that is written inside these brackets?

\documentclass{XXXXX}

Post the smallest amount of code you can that shows the problem you are trying to correct. That is needed to give you specific advice.
vinaykumarn
Posts: 15
Joined: Wed Oct 19, 2016 6:30 am

Alignment

Post by vinaykumarn »

Hello sir,
Here is the minimal code:

Code: Select all

\documentclass[
12pt, % The default document font size, options: 10pt, 11pt, 12pt
oneside, % Two side (alternating margins) for binding by default, uncomment to switch to one side
english, % ngerman for German
onehalfspacing, % Single line spacing, alternatives: onehalfspacing or doublespacing
%draft, % Uncomment to enable draft mode (no pictures, no links, overfull hboxes indicated)
nolistspacing, % If the document is onehalfspacing or doublespacing, uncomment this to set spacing in lists to single
%liststotoc, % Uncomment to add the list of figures/tables/etc to the table of contents
%toctotoc, % Uncomment to add the main table of contents to the table of contents
parskip, % Uncomment to add space between paragraphs
%nohyperref, % Uncomment to not load the hyperref package
%headsepline, % Uncomment to get a line under the header
]{MastersDoctoralThesis} % The class file specifying the document structure
vinaykumarn
Posts: 15
Joined: Wed Oct 19, 2016 6:30 am

Alignment

Post by vinaykumarn »

Dear sir,

Here is screenshot of what actually i needed.
Latex Query.png
Latex Query.png (47.02 KiB) Viewed 7333 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Alignment

Post by Stefan Kottwitz »

Here is an example using the titlesec package:

Code: Select all

\usepackage{titlesec}
\titleformat{\chapter}[display]
  {\normalfont\huge\bfseries\raggedleft}{\chaptertitlename\ \thechapter}
  {20pt}{\Huge}
Adjust as you desire. The command \raggedleft does the right alignment.

Stefan
LaTeX.org admin
vinaykumarn
Posts: 15
Joined: Wed Oct 19, 2016 6:30 am

Alignment

Post by vinaykumarn »

Dear Stefan Kottwitz

Thank you, thank you very much for your valuable suggestions and it works.
But I have couple of problems need to be solved, please suggest me regarding this.
The screenshot of the problem is attached with this post. Please do needful and oblige.

Thanking you,
Vinay Kumar N
Attachments
Latex Corrections 2.png
Latex Corrections 2.png (53.24 KiB) Viewed 7310 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Alignment

Post by Stefan Kottwitz »

You could add a line break with a title rule, \\[0.5ex]\titlerule, that is,

Code: Select all

\titleformat{\chapter}[display]
  {\normalfont\huge\bfseries\raggedleft}{%
   \chaptertitlename\ \thechapter\\[0.5ex]\titlerule}
  {20pt}{\Huge}
Regarding the page header style, you may play with this and change it:

Code: Select all

\providepairofpagestyles{thesisSimple}{%
\clearpairofpagestyles%
\automark[chapter]{chapter}
\ihead{\headmark}% Inner header
\ohead[\pagemark]{\pagemark}% Outer header
}
\ifoot{}% Inner footer
\ofoot{}% Outer footer
\pagestyle{thesisSimple}
\providepairofpagestyles[thesisSimple]{thesis}{%
\automark*[section]{}%
}
\providepairofpagestyles[thesisSimple]{review}{%
	\ofoot[\ttitle/\authorname]{\ttitle/\authorname}
	\ifoot[\today]{\today}
}
Stefan
LaTeX.org admin
Post Reply