调整“Sincerely 和 Name”之间的签名

调整“Sincerely 和 Name”之间的签名

在此处输入图片描述

我想将签名放在“Sincerely 和 Name”之间。使用 latex 命令 French Cursive:{\cursive\setul{0.1ex}{}\ul{~~Mickly~~}}

\documentclass[11pt]{letter} % Default font size of the document, change to 10pt to fit more text

\usepackage{newcent} % Default font is the New Century Schoolbook PostScript font
\usepackage{soul}% for the underlining
\usepackage[doublespacing]{setspace}% just to set the samples further apart

\usepackage{emerald}% for 1-4
\usepackage{frcursive}% for 5
\usepackage{inslrmin}% for 6

\usepackage[T1]{fontenc}

%\usepackage{helvet} % Uncomment this (while commenting the above line) to use the Helvetica font

% Margins
\topmargin=-1in % Moves the top of the document 1 inch above the default
\textheight=8.5in % Total height of the text on the page before text goes on to the next page, this can be increased in a longer letter
\oddsidemargin=-10pt % Position of the left margin, can be negative or positive if you want more or less room
\textwidth=6.5in % Total width of the text, increase this if the left margin was decreased and vice-versa

\let\raggedleft\raggedright % Pushes the date (at the top) to the left, comment this line to have the date on the right

\begin{document}

%----------------------------------------------------------------------------------------
%   ADDRESSEE SECTION
%----------------------------------------------------------------------------------------

\begin{letter}{Professor \\
Institut \\
University\\
City, Country 123456}

%----------------------------------------------------------------------------------------
%   YOUR NAME & ADDRESS SECTION
%----------------------------------------------------------------------------------------

\begin{center}
\large\bf Mick Fre \\ % Your name
\vspace{20pt}
\hrule height 1pt % If you would like a horizontal line separating the name from the address, uncomment the line to the left of this text
Street \\ City, Country 123456 \\ 111-333-111 % Your address and phone number
\end{center}


\signature{Name} % Your name for the signature at the bottom

%----------------------------------------------------------------------------------------
%   LETTER CONTENT SECTION
%----------------------------------------------------------------------------------------

\opening{Respected Professor:}

JD: {\ECFJD\setul{0.1ex}{}\ul{~~Mickly~~}}

Skeetch: {\ECFSkeetch\setul{0.1ex}{}\ul{~~Mickly~~}}

Teen Spirit: {\ECFTeenSpirit\setul{-0.1ex}{0.3pt}\ul{~~Mickly~~}}

Tall Paul: {\ECFTallPaul\setul{0.15ex}{}\ul{~~Mickly~~}}

French Cursive: {\cursive\setul{0.1ex}{}\ul{~~Mickly~~}}

Insular Minuscule: {\iminfamily\setul{0.1ex}{}\ul{~~Mickly~~}}

\closing{Sincerely yours,}
\end{letter}
\end{document}

答案1

该类letter不易操作。如果你不熟悉如何管理它,则应避免进行修改。

以下是使用默认类的设置的复制article

在此处输入图片描述

\documentclass{article}

\usepackage[margin=1in]{geometry}
\usepackage[doublespacing]{setspace}% just to set the samples further apart
\usepackage{graphicx}

\pagestyle{empty}

\begin{document}

\Large\bfseries\centering

%----------------------------------------------------------------------------------------
%   YOUR NAME & ADDRESS SECTION
%----------------------------------------------------------------------------------------

Mick Fre

\rule{\textwidth}{1pt}

Street

City, County 123456

111-333-111

\bigskip

\normalsize\mdseries\raggedright

\today

\bigskip

%----------------------------------------------------------------------------------------
%   ADDRESSEE SECTION
%----------------------------------------------------------------------------------------

Professor

Institut

University

City, Country 123456

\bigskip

%----------------------------------------------------------------------------------------
%   LETTER CONTENT SECTION
%----------------------------------------------------------------------------------------

Respected Professor:

JD: \rule[-.4pt]{10em}{.4pt}

Skeetch: \rule[-.4pt]{10em}{.4pt}

Teen Spirit: \rule[-.4pt]{10em}{.4pt}

Tall Paul: \rule[-.4pt]{10em}{.4pt}

French Cursive: \rule[-.4pt]{10em}{.4pt}

Insular Minuscule: \rule[-.4pt]{10em}{.4pt}

Sincerely yours,

\bigskip

\includegraphics[height=2\baselineskip]{signature}

Name% Your name for the signature at the bottom

\end{document}

如果你坚持使用该类letter,你可以使用以下方法插入签名

\signature{\includegraphics[height=2\normalbaselineskip]{signature} \\ Name}

相关内容