Moving CC in scrlttr2 to the top












1














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}









share|improve this question



























    1














    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}









    share|improve this question

























      1












      1








      1







      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}









      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 10 at 11:08









      white_gecko

      7381717




      7381717






















          2 Answers
          2






          active

          oldest

          votes


















          1














          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:



          enter image description here



          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:



          enter image description here



          (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.






          share|improve this answer





























            0














            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:
            The Result






            share|improve this answer





















              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%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









              1














              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:



              enter image description here



              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:



              enter image description here



              (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.






              share|improve this answer


























                1














                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:



                enter image description here



                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:



                enter image description here



                (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.






                share|improve this answer
























                  1












                  1








                  1






                  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:



                  enter image description here



                  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:



                  enter image description here



                  (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.






                  share|improve this answer












                  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:



                  enter image description here



                  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:



                  enter image description here



                  (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.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Dec 10 at 13:02









                  esdd

                  58.4k34586




                  58.4k34586























                      0














                      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:
                      The Result






                      share|improve this answer


























                        0














                        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:
                        The Result






                        share|improve this answer
























                          0












                          0








                          0






                          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:
                          The Result






                          share|improve this answer












                          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:
                          The Result







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Dec 11 at 13:26









                          white_gecko

                          7381717




                          7381717






























                              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.





                              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.




                              draft saved


                              draft discarded














                              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





















































                              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

                              Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                              ComboBox Display Member on multiple fields

                              Is it possible to collect Nectar points via Trainline?