Reduce space between title and top margin in scrartclShift title and author text up?Increase white space between title and subtitle in scrartclHow reduce the space between title and articlereduce space at the top using maketitleChange title of Table of ContentsCreate a document cover using style classTwo maketitles in one pageReduce spacing between the top and chapter titleDecreasing space between title and body in scrartclReduce white space above chapter title, and reduce space between title and text, for unnumbered chaptersReduce space between title and chapter
What is the orbit and expected lifetime of Crew Dragon trunk?
Is there a math expression equivalent to the conditional ternary operator?
Was this cameo in Captain Marvel computer generated?
Giving a talk in my old university, how prominently should I tell students my salary?
Is this Paypal Github SDK reference really a dangerous site?
Should I file my taxes? No income, unemployed, but paid 2k in student loan interest
A running toilet that stops itself
Use Mercury as quenching liquid for swords?
How would an energy-based "projectile" blow up a spaceship?
An Undercover Army
Why would /etc/passwd be used every time someone executes `ls -l` command?
Was it really inappropriate to write a pull request for the company I interviewed with?
What does *dead* mean in *What do you mean, dead?*?
Does an unused member variable take up memory?
Should I apply for my boss's promotion?
Is it appropriate to ask a former professor to order a library book for me through ILL?
Can I challenge the interviewer to give me a proper technical feedback?
Has a sovereign Communist government ever run, and conceded loss, on a fair election?
Paper published similar to PhD thesis
Why does a car's steering wheel get lighter with increasing speed
Averaging over columns while ignoring zero entries
What is the purpose of a disclaimer like "this is not legal advice"?
Why does this boat have a landing pad? (SpaceX's GO Searcher) Any plans for propulsive capsule landings?
What is better: yes / no radio, or simple checkbox?
Reduce space between title and top margin in scrartcl
Shift title and author text up?Increase white space between title and subtitle in scrartclHow reduce the space between title and articlereduce space at the top using maketitleChange title of Table of ContentsCreate a document cover using style classTwo maketitles in one pageReduce spacing between the top and chapter titleDecreasing space between title and body in scrartclReduce white space above chapter title, and reduce space between title and text, for unnumbered chaptersReduce space between title and chapter
How can I reduce the space between the title and the top margin in my example document with KOMA-Script class scrartcl
below?
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
I already tried this solution in which the titling package is used, however then the subtitle
is not displayed anymore.
I am looking for a quick and dirty solution, like using vspace-10px
or something like that.
spacing titles koma-script scrartcl
New contributor
add a comment |
How can I reduce the space between the title and the top margin in my example document with KOMA-Script class scrartcl
below?
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
I already tried this solution in which the titling package is used, however then the subtitle
is not displayed anymore.
I am looking for a quick and dirty solution, like using vspace-10px
or something like that.
spacing titles koma-script scrartcl
New contributor
add a comment |
How can I reduce the space between the title and the top margin in my example document with KOMA-Script class scrartcl
below?
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
I already tried this solution in which the titling package is used, however then the subtitle
is not displayed anymore.
I am looking for a quick and dirty solution, like using vspace-10px
or something like that.
spacing titles koma-script scrartcl
New contributor
How can I reduce the space between the title and the top margin in my example document with KOMA-Script class scrartcl
below?
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
I already tried this solution in which the titling package is used, however then the subtitle
is not displayed anymore.
I am looking for a quick and dirty solution, like using vspace-10px
or something like that.
spacing titles koma-script scrartcl
spacing titles koma-script scrartcl
New contributor
New contributor
edited 2 hours ago
Kurt
38.8k849163
38.8k849163
New contributor
asked 2 hours ago
John DoeJohn Doe
133
133
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Well, if you want it quick and dirty simply add vspace-1cm
into the title command:
titlevspace-1cmThis is a nice title!
Change 1cm
for your needs. In the following MWe I added package showframe
to visualize the typing area and margins.
With the following MWE
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
usepackageshowframe
titlevspace-1cmThis is a nice title!
%titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
you get the result:
I've actually tried this solution before, but it didn't work in my real document. I probably forgot to delete an earlier troubleshooting attempt that kept the problem going. Anyway, thanks for your help!
– John Doe
54 mins ago
add a comment |
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
);
);
John Doe is a new contributor. Be nice, and check out our Code of Conduct.
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%2f478497%2freduce-space-between-title-and-top-margin-in-scrartcl%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Well, if you want it quick and dirty simply add vspace-1cm
into the title command:
titlevspace-1cmThis is a nice title!
Change 1cm
for your needs. In the following MWe I added package showframe
to visualize the typing area and margins.
With the following MWE
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
usepackageshowframe
titlevspace-1cmThis is a nice title!
%titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
you get the result:
I've actually tried this solution before, but it didn't work in my real document. I probably forgot to delete an earlier troubleshooting attempt that kept the problem going. Anyway, thanks for your help!
– John Doe
54 mins ago
add a comment |
Well, if you want it quick and dirty simply add vspace-1cm
into the title command:
titlevspace-1cmThis is a nice title!
Change 1cm
for your needs. In the following MWe I added package showframe
to visualize the typing area and margins.
With the following MWE
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
usepackageshowframe
titlevspace-1cmThis is a nice title!
%titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
you get the result:
I've actually tried this solution before, but it didn't work in my real document. I probably forgot to delete an earlier troubleshooting attempt that kept the problem going. Anyway, thanks for your help!
– John Doe
54 mins ago
add a comment |
Well, if you want it quick and dirty simply add vspace-1cm
into the title command:
titlevspace-1cmThis is a nice title!
Change 1cm
for your needs. In the following MWe I added package showframe
to visualize the typing area and margins.
With the following MWE
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
usepackageshowframe
titlevspace-1cmThis is a nice title!
%titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
you get the result:
Well, if you want it quick and dirty simply add vspace-1cm
into the title command:
titlevspace-1cmThis is a nice title!
Change 1cm
for your needs. In the following MWe I added package showframe
to visualize the typing area and margins.
With the following MWE
documentclass[a4paper,11pt]scrartcl
usepackageblindtext
usepackageshowframe
titlevspace-1cmThis is a nice title!
%titleThis is a nice title!
subtitleThis is an even nicer subtitle!
authorJohn Doe
begindocument
maketitle
sectionIntroduction
blindtext
blindtext
enddocument
you get the result:
edited 2 hours ago
answered 2 hours ago
KurtKurt
38.8k849163
38.8k849163
I've actually tried this solution before, but it didn't work in my real document. I probably forgot to delete an earlier troubleshooting attempt that kept the problem going. Anyway, thanks for your help!
– John Doe
54 mins ago
add a comment |
I've actually tried this solution before, but it didn't work in my real document. I probably forgot to delete an earlier troubleshooting attempt that kept the problem going. Anyway, thanks for your help!
– John Doe
54 mins ago
I've actually tried this solution before, but it didn't work in my real document. I probably forgot to delete an earlier troubleshooting attempt that kept the problem going. Anyway, thanks for your help!
– John Doe
54 mins ago
I've actually tried this solution before, but it didn't work in my real document. I probably forgot to delete an earlier troubleshooting attempt that kept the problem going. Anyway, thanks for your help!
– John Doe
54 mins ago
add a comment |
John Doe is a new contributor. Be nice, and check out our Code of Conduct.
John Doe is a new contributor. Be nice, and check out our Code of Conduct.
John Doe is a new contributor. Be nice, and check out our Code of Conduct.
John Doe is a new contributor. Be nice, and check out our Code of Conduct.
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%2f478497%2freduce-space-between-title-and-top-margin-in-scrartcl%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