Quero digitar meu nome em letras maiúsculas e em itálico no espaço destacado na caixa preta, mas não consigo. Todo o resto está bem com a carta de apresentação, só preciso digitar meu nome no espaço onde destaquei com a caixa preta na imagem abaixo.
Meu código de látex está aqui:
% 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}
Responder1
A distância entre a frase de fechamento e a assinatura é codificada letter.cls
; para modificá-lo, você deve alterar o \closing
comando: o código a seguir não modifica realmente a distância, você deve agir 6\medskipamount
, alterando-o para um comprimento que atenda às suas necessidades.
\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
Este é o resultado quando 2\medskipamount
é usado
Observe que isso \noindent
não é necessário no corpo da letra com a letter
classe, que define recuo zero.
Responder2
Uma solução simples é esta:
\signature{\vspace{-80pt} Susan R. Bumpershoot}
Responder3
A distância é entretanto controlada através do pseudo-comprimentosigbeforevskip
Entre a frase de fechamento e a explicação da assinatura é inserido um salto vertical cuja altura é definida no
sigbeforevskip
pseudocomprimento. Noslco
arquivos predefinidos esse valor é definido como duas linhas. Neste espaço você poderá então escrever sua assinatura. (Manual de instruções KOMA, 22.1.7)
e recentemente - desde a versão26.3.2980, ~ desde 2019 - existe o novo comando
\setplength[factor]{pseudo-length}{value}
com isso você pode definir diretamente a distância para value x factor
, onde factor
o padrão é 1.
Por exemploo padrão é
\setplength{sigbeforevskip}{2\baselineskip}
mas você também pode dizer:
\setplength[1.5]{sigbeforevskip}{\useplength{other-pseudo-length}}
Responder4
É uma espécie de solução manual, mas simples:
\closing{Sincerely yours, \vspace{2cm}}