Alignment issue in a titlepage Unicorn Meta Zoo #1: Why another podcast? ...

Map material from china not allowed to leave the country

A Paper Record is What I Hamper

France's Public Holidays' Puzzle

Justification for leaving new position after a short time

Does Mathematica have an implementation of the Poisson Binomial Distribution?

Multiple fireplaces in an apartment building?

What is the least dense liquid under normal conditions?

Are all CP/M-80 implementations binary compatible?

What do you call the part of a novel that is not dialog?

Could moose/elk survive in the Amazon forest?

Why isn't everyone flabbergasted about Bran's "gift"?

What is this word supposed to be?

finding a tangent line to a parabola

Protagonist's race is hidden - should I reveal it?

What is the term for a person whose job is to place products on shelves in stores?

What *exactly* is electrical current, voltage, and resistance?

Error: Syntax error. Missing ')' for CASE Statement

Why did Israel vote against lifting the American embargo on Cuba?

Multiple options vs single option UI

What's the difference between using dependency injection with a container and using a service locator?

Co-worker works way more than he should

The art of proof summarizing. Are there known rules, or is it a purely common sense matter?

c++ diamond problem - How to call base method only once

What was Apollo 13's "Little Jolt" after MECO?



Alignment issue in a titlepage



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraHelp with the titlepageTitlepage formattingCreate a document cover using style classtitlepage with semi-transparent beamercolorboxTitlepage dissertation helpMove titlepage before abstracttitlepage settingCustom titlepageAlternative for maketitle and titlepageTitlepage and Section 1 on first page? Not sure what I've done (Custom titlepage)












1















Here is what I am trying to achieve,



enter image description here



but I am getting this,



enter image description here



with this syntax,



documentclass[14pt, a4paper]{article}
setlength{oddsidemargin}{0.5cm}
setlength{evensidemargin}{0.5cm}
setlength{topmargin}{-1.6cm}
setlength{leftmargin}{0.5cm}
setlength{rightmargin}{0.5cm}
setlength{textheight}{24.00cm}
setlength{textwidth}{15.00cm}
parindent 0pt
parskip 5pt
pagestyle{plain}
usepackage{graphicx}
usepackage{hyperref}
linespread{1.5}

newcommand{namelistlabel}[1]{mbox{#1}hfil}
newenvironment{namelist}[1]{%1
begin{list}{}
{
letmakelabelnamelistlabel
settowidth{labelwidth}{#1}
setlength{leftmargin}{1.1labelwidth}
}
}{%1
end{list}}

begin{document}

begin{titlepage}
begin{center}
bfseries
large MPhil/PhD SYNOPSIS
vskip.2in
textsc{Large TITLE OF THE RESEARCH WORK TO BE CARRIED OUT}
end{center}

vskip0.7in

%begin{figure}[th]
% centering
% includegraphics[width=150pt]{uomlogo.PNG}
%end{figure}

vskip0.7in
begin{minipage}{.40textwidth}
begin{flushleft}
bfserieslarge Submitted by par emph{}
vskip.2in
bfserieslarge Supervisor par emph{}
vskip.2in
bfserieslarge Co-Supervisor (if Any) par emph{}
end{flushleft}
end{minipage}
hskip.2textwidth
begin{minipage}{.40textwidth}
begin{flushleft}
bfserieslarge Name of the Scholar
vskip.2in
bfserieslarge Dr./Mr. Name. par emph{small Designation and Affiliation}
vskip.2in
bfserieslarge Dr./Mr. Name. par emph{small Designation and Affiliation}
end{flushleft}
end{minipage}

vskip1.3in
begin{center}
bfseries
Large Department of ....

Large University of .....

large Session 2010-2012

end{center}

end{titlepage}



end{document}


The problem is with the alignment and the style of the text. Please suggest, how to improve this.









share




















  • 1





    @marmot I have edit the question. Thx

    – zhk
    3 mins ago











  • You have a vskip between the label and where you want the name to be. This puts the name on the second line. Take the vskip out. But I would format this with a tabular environment.

    – Alan Munn
    3 mins ago













  • @AlanMunn Can you please suggest your approach?

    – zhk
    2 mins ago
















1















Here is what I am trying to achieve,



enter image description here



but I am getting this,



enter image description here



with this syntax,



documentclass[14pt, a4paper]{article}
setlength{oddsidemargin}{0.5cm}
setlength{evensidemargin}{0.5cm}
setlength{topmargin}{-1.6cm}
setlength{leftmargin}{0.5cm}
setlength{rightmargin}{0.5cm}
setlength{textheight}{24.00cm}
setlength{textwidth}{15.00cm}
parindent 0pt
parskip 5pt
pagestyle{plain}
usepackage{graphicx}
usepackage{hyperref}
linespread{1.5}

newcommand{namelistlabel}[1]{mbox{#1}hfil}
newenvironment{namelist}[1]{%1
begin{list}{}
{
letmakelabelnamelistlabel
settowidth{labelwidth}{#1}
setlength{leftmargin}{1.1labelwidth}
}
}{%1
end{list}}

begin{document}

begin{titlepage}
begin{center}
bfseries
large MPhil/PhD SYNOPSIS
vskip.2in
textsc{Large TITLE OF THE RESEARCH WORK TO BE CARRIED OUT}
end{center}

vskip0.7in

%begin{figure}[th]
% centering
% includegraphics[width=150pt]{uomlogo.PNG}
%end{figure}

vskip0.7in
begin{minipage}{.40textwidth}
begin{flushleft}
bfserieslarge Submitted by par emph{}
vskip.2in
bfserieslarge Supervisor par emph{}
vskip.2in
bfserieslarge Co-Supervisor (if Any) par emph{}
end{flushleft}
end{minipage}
hskip.2textwidth
begin{minipage}{.40textwidth}
begin{flushleft}
bfserieslarge Name of the Scholar
vskip.2in
bfserieslarge Dr./Mr. Name. par emph{small Designation and Affiliation}
vskip.2in
bfserieslarge Dr./Mr. Name. par emph{small Designation and Affiliation}
end{flushleft}
end{minipage}

vskip1.3in
begin{center}
bfseries
Large Department of ....

Large University of .....

large Session 2010-2012

end{center}

end{titlepage}



end{document}


The problem is with the alignment and the style of the text. Please suggest, how to improve this.









share




















  • 1





    @marmot I have edit the question. Thx

    – zhk
    3 mins ago











  • You have a vskip between the label and where you want the name to be. This puts the name on the second line. Take the vskip out. But I would format this with a tabular environment.

    – Alan Munn
    3 mins ago













  • @AlanMunn Can you please suggest your approach?

    – zhk
    2 mins ago














1












1








1








Here is what I am trying to achieve,



enter image description here



but I am getting this,



enter image description here



with this syntax,



documentclass[14pt, a4paper]{article}
setlength{oddsidemargin}{0.5cm}
setlength{evensidemargin}{0.5cm}
setlength{topmargin}{-1.6cm}
setlength{leftmargin}{0.5cm}
setlength{rightmargin}{0.5cm}
setlength{textheight}{24.00cm}
setlength{textwidth}{15.00cm}
parindent 0pt
parskip 5pt
pagestyle{plain}
usepackage{graphicx}
usepackage{hyperref}
linespread{1.5}

newcommand{namelistlabel}[1]{mbox{#1}hfil}
newenvironment{namelist}[1]{%1
begin{list}{}
{
letmakelabelnamelistlabel
settowidth{labelwidth}{#1}
setlength{leftmargin}{1.1labelwidth}
}
}{%1
end{list}}

begin{document}

begin{titlepage}
begin{center}
bfseries
large MPhil/PhD SYNOPSIS
vskip.2in
textsc{Large TITLE OF THE RESEARCH WORK TO BE CARRIED OUT}
end{center}

vskip0.7in

%begin{figure}[th]
% centering
% includegraphics[width=150pt]{uomlogo.PNG}
%end{figure}

vskip0.7in
begin{minipage}{.40textwidth}
begin{flushleft}
bfserieslarge Submitted by par emph{}
vskip.2in
bfserieslarge Supervisor par emph{}
vskip.2in
bfserieslarge Co-Supervisor (if Any) par emph{}
end{flushleft}
end{minipage}
hskip.2textwidth
begin{minipage}{.40textwidth}
begin{flushleft}
bfserieslarge Name of the Scholar
vskip.2in
bfserieslarge Dr./Mr. Name. par emph{small Designation and Affiliation}
vskip.2in
bfserieslarge Dr./Mr. Name. par emph{small Designation and Affiliation}
end{flushleft}
end{minipage}

vskip1.3in
begin{center}
bfseries
Large Department of ....

Large University of .....

large Session 2010-2012

end{center}

end{titlepage}



end{document}


The problem is with the alignment and the style of the text. Please suggest, how to improve this.









share
















Here is what I am trying to achieve,



enter image description here



but I am getting this,



enter image description here



with this syntax,



documentclass[14pt, a4paper]{article}
setlength{oddsidemargin}{0.5cm}
setlength{evensidemargin}{0.5cm}
setlength{topmargin}{-1.6cm}
setlength{leftmargin}{0.5cm}
setlength{rightmargin}{0.5cm}
setlength{textheight}{24.00cm}
setlength{textwidth}{15.00cm}
parindent 0pt
parskip 5pt
pagestyle{plain}
usepackage{graphicx}
usepackage{hyperref}
linespread{1.5}

newcommand{namelistlabel}[1]{mbox{#1}hfil}
newenvironment{namelist}[1]{%1
begin{list}{}
{
letmakelabelnamelistlabel
settowidth{labelwidth}{#1}
setlength{leftmargin}{1.1labelwidth}
}
}{%1
end{list}}

begin{document}

begin{titlepage}
begin{center}
bfseries
large MPhil/PhD SYNOPSIS
vskip.2in
textsc{Large TITLE OF THE RESEARCH WORK TO BE CARRIED OUT}
end{center}

vskip0.7in

%begin{figure}[th]
% centering
% includegraphics[width=150pt]{uomlogo.PNG}
%end{figure}

vskip0.7in
begin{minipage}{.40textwidth}
begin{flushleft}
bfserieslarge Submitted by par emph{}
vskip.2in
bfserieslarge Supervisor par emph{}
vskip.2in
bfserieslarge Co-Supervisor (if Any) par emph{}
end{flushleft}
end{minipage}
hskip.2textwidth
begin{minipage}{.40textwidth}
begin{flushleft}
bfserieslarge Name of the Scholar
vskip.2in
bfserieslarge Dr./Mr. Name. par emph{small Designation and Affiliation}
vskip.2in
bfserieslarge Dr./Mr. Name. par emph{small Designation and Affiliation}
end{flushleft}
end{minipage}

vskip1.3in
begin{center}
bfseries
Large Department of ....

Large University of .....

large Session 2010-2012

end{center}

end{titlepage}



end{document}


The problem is with the alignment and the style of the text. Please suggest, how to improve this.







titles





share














share












share



share








edited 3 mins ago







zhk

















asked 8 mins ago









zhkzhk

1265




1265








  • 1





    @marmot I have edit the question. Thx

    – zhk
    3 mins ago











  • You have a vskip between the label and where you want the name to be. This puts the name on the second line. Take the vskip out. But I would format this with a tabular environment.

    – Alan Munn
    3 mins ago













  • @AlanMunn Can you please suggest your approach?

    – zhk
    2 mins ago














  • 1





    @marmot I have edit the question. Thx

    – zhk
    3 mins ago











  • You have a vskip between the label and where you want the name to be. This puts the name on the second line. Take the vskip out. But I would format this with a tabular environment.

    – Alan Munn
    3 mins ago













  • @AlanMunn Can you please suggest your approach?

    – zhk
    2 mins ago








1




1





@marmot I have edit the question. Thx

– zhk
3 mins ago





@marmot I have edit the question. Thx

– zhk
3 mins ago













You have a vskip between the label and where you want the name to be. This puts the name on the second line. Take the vskip out. But I would format this with a tabular environment.

– Alan Munn
3 mins ago







You have a vskip between the label and where you want the name to be. This puts the name on the second line. Take the vskip out. But I would format this with a tabular environment.

– Alan Munn
3 mins ago















@AlanMunn Can you please suggest your approach?

– zhk
2 mins ago





@AlanMunn Can you please suggest your approach?

– zhk
2 mins ago










0






active

oldest

votes












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f487481%2falignment-issue-in-a-titlepage%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f487481%2falignment-issue-in-a-titlepage%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...