편지 문서에서 서명에 할당된 공간을 어떻게 제어합니까?

편지 문서에서 서명에 할당된 공간을 어떻게 제어합니까?

블랙박스에 강조 표시된 공간에 이름을 대문자와 이탤릭체로 입력하고 싶은데 안되는 것 같습니다. 다른 모든 것은 자기 소개서에 괜찮습니다. 아래 그림에서 검은색 상자로 강조 표시된 공간에 내 이름을 입력하면 됩니다.

내 라텍스 코드는 다음과 같습니다.

% Cover letter using letter.sty
\documentclass{letter} % Uses 10pt
%Use \documentstyle[newcent]{letter} for New Century Schoolbook postscript font
% the following commands control the margins:
\topmargin=-1in    % Make letterhead start about 1 inch from top of page 
\textheight=8in  % text height can be bigger for a longer letter
\oddsidemargin=0pt % leftmargin is 1 inch
\textwidth=6.5in   % textwidth of 6.5in leaves 1 inch for right margin

\begin{document}

\signature{Susan R. Bumpershoot}           % name for signature 
\longindentation=0pt                       % needed to get closing flush left
\let\raggedleft\raggedright                % needed to get date flush left


\begin{letter}{Ms. Terri Roberts \\
Senior Staff Recruiter \\
XYZ Corporation \\
Rt. 56 \\
Anytown, New Jersey 05867}


\begin{flushleft}
{\large\bf Susan R. Bumpershoot}
\end{flushleft}
\medskip\hrule height 1pt
\begin{flushright}
\hfill 1985 Storm Lane, Troy, NY 12180 \\
\hfill (518) 273-0014 or (518) 272-6666 
\end{flushright} 
\vfill % forces letterhead to top of page


\opening{Dear Ms. Roberts:} 

\noindent PARAGRAPH ONE: State reason for letter, name the position or type 
of work you are applying for and identify source from  which  you 
learned   of   the  opening.  (i.e.  Career  Development  Center, 
newspaper, employment service, personal contact). 

\noindent PARAGRAPH  TWO:  Indicate why you are interested in the position, 
the company, its products, services - above all, stress what  you 
can  do  for  the employer. If you are a recent graduate, explain 
how your academic background makes you a qualified candidate  for 
the  position.  If  you have practical work experience, point out 
specific achievements or unique qualifications. Try not to repeat 
the  same  information  the reader will find in the resume. Refer 
the reader to the enclosed resume or application which summarizes 
your  qualifications,  training,  and experiences. The purpose of 
this section is to strengthen your resume  by  providing  details 
which bring your experiences to life. 

\noindent PARAGRAPH THREE: Request a personal interview and  indicate  your 
flexibility as to the time and place. Repeat your phone number in 
the letter and offer assistance to help in a speedy response. For 
example,  state that you will be in the city where the company is 
located on a certain date and would like to set up an  interview. 
Or,  state  that  you  will  call  on a certain date to set up an 
interview. End the letter by thanking  the  employer  for  taking 
time to consider your credentials. 

\closing{Sincerely yours,} 



\encl{}                 % Enclosures

\end{letter}


\end{document}

여기에 이미지 설명을 입력하세요

답변1

닫는 문구와 서명 사이의 거리는 하드 코딩되어 있습니다 letter.cls. 이를 수정하려면 명령을 변경해야 합니다 . 다음 코드는 실제로 거리를 수정하지 않으며, 필요에 맞는 길이로 변경하여 \closing조치를 취해야 합니다 .6\medskipamount

\makeatletter
\renewcommand{\closing}[1]{\par\nobreak\vspace{\parskip}%
  \stopbreaks
  \noindent
  \ifx\@empty\fromaddress\else
  \hspace*{\longindentation}\fi
  \parbox{\indentedwidth}{\raggedright
       \ignorespaces #1\\[6\medskipamount]%
       \ifx\@empty\fromsig
           \fromname
       \else \fromsig \fi\strut}%
   \par}
\makeatother

2\medskipamount를 사용했을 때의 결과입니다.

여기에 이미지 설명을 입력하세요

들여쓰기를 0으로 설정하는 클래스 \noindent의 문자 본문에는 이 필요하지 않습니다.letter

답변2

간단한 해결 방법은 다음과 같습니다.

\signature{\vspace{-80pt} Susan R. Bumpershoot}

답변3

그 사이 거리는 의사 길이를 통해 제어됩니다.sigbeforevskip

닫는 문구와 서명 설명 사이에 높이가 sigbeforevskip의사 길이로 정의된 수직 건너뛰기가 삽입됩니다. 사전 정의된 파일에서 lco이 값은 두 줄로 설정됩니다. 이 공간에 서명을 작성할 수 있습니다. (코마 매뉴얼, 22.1.7)

그리고 최근 -- 버전 이후3.26.2980, ~ 2019년부터 -- 새로운 명령이 있습니다

\setplength[factor]{pseudo-length}{value}

이를 통해 거리를 로 직접 설정할 수 있습니다 value x factor. 여기서 factor기본값은 1입니다.

예:기본값은

\setplength{sigbeforevskip}{2\baselineskip}

하지만 다음과 같이 말할 수도 있습니다.

\setplength[1.5]{sigbeforevskip}{\useplength{other-pseudo-length}}

답변4

일종의 수동이지만 간단한 솔루션입니다.

\closing{Sincerely yours, \vspace{2cm}} 

관련 정보