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)
Here is what I am trying to achieve,
but I am getting this,
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
add a comment |
Here is what I am trying to achieve,
but I am getting this,
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
1
@marmot I have edit the question. Thx
– zhk
3 mins ago
You have avskip
between the label and where you want the name to be. This puts the name on the second line. Take thevskip
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
add a comment |
Here is what I am trying to achieve,
but I am getting this,
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
Here is what I am trying to achieve,
but I am getting this,
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
titles
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 avskip
between the label and where you want the name to be. This puts the name on the second line. Take thevskip
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
add a comment |
1
@marmot I have edit the question. Thx
– zhk
3 mins ago
You have avskip
between the label and where you want the name to be. This puts the name on the second line. Take thevskip
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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 thevskip
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