Moving CC in scrlttr2 to the top
I would like to add a CC line between the address and the "yourref"-part.
Placing the cc
command just after begin{letter}
places the CC-text at the same place as the from-address. Is there any special koma-var for cc, or how can I place some cc lines in the head of a letter?
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
begin{document}
begin{letter}{To this address}
cc{Another person}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
positioning letters
add a comment |
I would like to add a CC line between the address and the "yourref"-part.
Placing the cc
command just after begin{letter}
places the CC-text at the same place as the from-address. Is there any special koma-var for cc, or how can I place some cc lines in the head of a letter?
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
begin{document}
begin{letter}{To this address}
cc{Another person}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
positioning letters
add a comment |
I would like to add a CC line between the address and the "yourref"-part.
Placing the cc
command just after begin{letter}
places the CC-text at the same place as the from-address. Is there any special koma-var for cc, or how can I place some cc lines in the head of a letter?
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
begin{document}
begin{letter}{To this address}
cc{Another person}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
positioning letters
I would like to add a CC line between the address and the "yourref"-part.
Placing the cc
command just after begin{letter}
places the CC-text at the same place as the from-address. Is there any special koma-var for cc, or how can I place some cc lines in the head of a letter?
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
begin{document}
begin{letter}{To this address}
cc{Another person}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
positioning letters
positioning letters
asked Dec 10 at 11:08
white_gecko
7381717
7381717
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Maybe you can use the location field:
documentclass[a4paper,
locfield=wide% <- added
]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{{setlength{textwidth}{useplength{locwidth}}{cc{Another person}}}}% <- added
%setkomavar*{ccseparator}{makebox[1cm][r]{Kopien an}}
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
You can also change position, height and width of the location field:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{cc{Another person}}
makeatletter
AtBeginLetter{%
@setplength{locwidth}{useplength{firstheadwidth}}
@setplength[3]{locheight}{baselineskip}
@setplength[-]{lochpos}{useplength{toaddrhpos}}
@setplength{locvpos}{useplength{refvpos}}
@addtoplength[-2]{locvpos}{baselineskip}
@addtoplength{refvpos}{baselineskip}
}
makeatother
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
(Additional remark: Starting with version 3.26 it will be possible to use setplength
and addtoplength
. Then makeatletter
and makeatother
can be removed from the example.
add a comment |
Just for completeness, actually this was my hacky solution with textpos
package:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
usepackage[absolute,overlay]{textpos} % <-- added this
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
% Added this: This is needed to move the references line down, so we have place for the CC block
makeatletter
@addtoplength{refvpos}{1cm}
makeatother
begin{document}
begin{letter}{To this address}
% Added this
begin{textblock*}{textwidth}(2cm,9.5cm) % {block width} (coords)
Kopie an: Another person
end{textblock*}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
With this result:
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
});
}
});
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%2f464108%2fmoving-cc-in-scrlttr2-to-the-top%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Maybe you can use the location field:
documentclass[a4paper,
locfield=wide% <- added
]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{{setlength{textwidth}{useplength{locwidth}}{cc{Another person}}}}% <- added
%setkomavar*{ccseparator}{makebox[1cm][r]{Kopien an}}
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
You can also change position, height and width of the location field:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{cc{Another person}}
makeatletter
AtBeginLetter{%
@setplength{locwidth}{useplength{firstheadwidth}}
@setplength[3]{locheight}{baselineskip}
@setplength[-]{lochpos}{useplength{toaddrhpos}}
@setplength{locvpos}{useplength{refvpos}}
@addtoplength[-2]{locvpos}{baselineskip}
@addtoplength{refvpos}{baselineskip}
}
makeatother
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
(Additional remark: Starting with version 3.26 it will be possible to use setplength
and addtoplength
. Then makeatletter
and makeatother
can be removed from the example.
add a comment |
Maybe you can use the location field:
documentclass[a4paper,
locfield=wide% <- added
]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{{setlength{textwidth}{useplength{locwidth}}{cc{Another person}}}}% <- added
%setkomavar*{ccseparator}{makebox[1cm][r]{Kopien an}}
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
You can also change position, height and width of the location field:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{cc{Another person}}
makeatletter
AtBeginLetter{%
@setplength{locwidth}{useplength{firstheadwidth}}
@setplength[3]{locheight}{baselineskip}
@setplength[-]{lochpos}{useplength{toaddrhpos}}
@setplength{locvpos}{useplength{refvpos}}
@addtoplength[-2]{locvpos}{baselineskip}
@addtoplength{refvpos}{baselineskip}
}
makeatother
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
(Additional remark: Starting with version 3.26 it will be possible to use setplength
and addtoplength
. Then makeatletter
and makeatother
can be removed from the example.
add a comment |
Maybe you can use the location field:
documentclass[a4paper,
locfield=wide% <- added
]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{{setlength{textwidth}{useplength{locwidth}}{cc{Another person}}}}% <- added
%setkomavar*{ccseparator}{makebox[1cm][r]{Kopien an}}
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
You can also change position, height and width of the location field:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{cc{Another person}}
makeatletter
AtBeginLetter{%
@setplength{locwidth}{useplength{firstheadwidth}}
@setplength[3]{locheight}{baselineskip}
@setplength[-]{lochpos}{useplength{toaddrhpos}}
@setplength{locvpos}{useplength{refvpos}}
@addtoplength[-2]{locvpos}{baselineskip}
@addtoplength{refvpos}{baselineskip}
}
makeatother
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
(Additional remark: Starting with version 3.26 it will be possible to use setplength
and addtoplength
. Then makeatletter
and makeatother
can be removed from the example.
Maybe you can use the location field:
documentclass[a4paper,
locfield=wide% <- added
]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{{setlength{textwidth}{useplength{locwidth}}{cc{Another person}}}}% <- added
%setkomavar*{ccseparator}{makebox[1cm][r]{Kopien an}}
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
You can also change position, height and width of the location field:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
setkomavar{location}{cc{Another person}}
makeatletter
AtBeginLetter{%
@setplength{locwidth}{useplength{firstheadwidth}}
@setplength[3]{locheight}{baselineskip}
@setplength[-]{lochpos}{useplength{toaddrhpos}}
@setplength{locvpos}{useplength{refvpos}}
@addtoplength[-2]{locvpos}{baselineskip}
@addtoplength{refvpos}{baselineskip}
}
makeatother
%% --- visualize field positions ---
%LoadLetterOption{visualize}
%showfields{address,location}
begin{document}
begin{letter}{To this address}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
ldots
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
Result:
(Additional remark: Starting with version 3.26 it will be possible to use setplength
and addtoplength
. Then makeatletter
and makeatother
can be removed from the example.
answered Dec 10 at 13:02
esdd
58.4k34586
58.4k34586
add a comment |
add a comment |
Just for completeness, actually this was my hacky solution with textpos
package:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
usepackage[absolute,overlay]{textpos} % <-- added this
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
% Added this: This is needed to move the references line down, so we have place for the CC block
makeatletter
@addtoplength{refvpos}{1cm}
makeatother
begin{document}
begin{letter}{To this address}
% Added this
begin{textblock*}{textwidth}(2cm,9.5cm) % {block width} (coords)
Kopie an: Another person
end{textblock*}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
With this result:
add a comment |
Just for completeness, actually this was my hacky solution with textpos
package:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
usepackage[absolute,overlay]{textpos} % <-- added this
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
% Added this: This is needed to move the references line down, so we have place for the CC block
makeatletter
@addtoplength{refvpos}{1cm}
makeatother
begin{document}
begin{letter}{To this address}
% Added this
begin{textblock*}{textwidth}(2cm,9.5cm) % {block width} (coords)
Kopie an: Another person
end{textblock*}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
With this result:
add a comment |
Just for completeness, actually this was my hacky solution with textpos
package:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
usepackage[absolute,overlay]{textpos} % <-- added this
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
% Added this: This is needed to move the references line down, so we have place for the CC block
makeatletter
@addtoplength{refvpos}{1cm}
makeatother
begin{document}
begin{letter}{To this address}
% Added this
begin{textblock*}{textwidth}(2cm,9.5cm) % {block width} (coords)
Kopie an: Another person
end{textblock*}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
With this result:
Just for completeness, actually this was my hacky solution with textpos
package:
documentclass[a4paper]{scrlttr2}
usepackage{polyglossia}
setmainlanguage{german}
usepackage[absolute,overlay]{textpos} % <-- added this
setkomavar{fromname}{Joe Bloggs}
setkomavar{fromaddress}{21 Bridge Street \ Smallville \ Dunwich DU3 4WE}
setkomavar{fromphone}{0123 45679}
% Added this: This is needed to move the references line down, so we have place for the CC block
makeatletter
@addtoplength{refvpos}{1cm}
makeatother
begin{document}
begin{letter}{To this address}
% Added this
begin{textblock*}{textwidth}(2cm,9.5cm) % {block width} (coords)
Kopie an: Another person
end{textblock*}
setkomavar{subject}{subject}
setkomavar{customer}[Personalnummer]{ABCDEF}
setkomavar{place}{here}
opening{Sehr geehrte Damen und Herren,}
…
closing{Mit freundlichen Grüßen,}
end{letter}
end{document}
With this result:
answered Dec 11 at 13:26
white_gecko
7381717
7381717
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f464108%2fmoving-cc-in-scrlttr2-to-the-top%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