在右侧我的名字下方插入我的签名图片

在右侧我的名字下方插入我的签名图片

我有如下文件。这

我需要做两处调整。

  1. 我需要纸质签名和图片签名,签名位于页面右侧(目前位于左侧)。但是,文档的其他部分将使用正常的左对齐。
  2. 我还需要打印的签名和垂直对齐的图片签名。

有人能帮我解决这个问题吗?谢谢!

\documentclass\[english\]{scrartcl}

\usepackage{graphics}
\usepackage\[T1\]{fontenc}
\usepackage\[utf8\]{inputenc}
\usepackage{babel}
\setkomafont{disposition}{\normalfont\bfseries}
\usepackage{graphicx}
\usepackage\[printwatermark\]{xwatermark}
\usepackage{xcolor}

\begin{document}

\title{\LARGE Thesis Title}

\date{\today}
\maketitle

The work in this thesis is my own except where otherwise stated.

Signature

\includegraphics\[scale=0.3\]{images}

\end{document}

答案1

用一个tabular

\documentclass[english]{scrartcl}

%\usepackage{graphics}   %% not needed
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\setkomafont{disposition}{\normalfont\bfseries}
\usepackage{graphicx}
\usepackage[printwatermark]{xwatermark}
\usepackage{xcolor}

\begin{document}

\title{\LARGE Thesis Title}

\date{\today}
\maketitle

The work in this thesis is my own except where otherwise stated.

\hspace*{\fill}
\begin{tabular}{l}  %% if you want centered alignment use 'c' instead of 'l'
Signature \\[1ex]
\includegraphics[scale=0.3]{example-image}
\end{tabular}

Again some text

\end{document}

在此处输入图片描述

答案2

您也可以使用\flushrightscale您也可以只测量原始签名的宽度并使用它。

\documentclass{article}
\usepackage{graphicx}

\begin{document}

\title{\LARGE Thesis Title}
\author{Author McAuthorson}
\date{\today}
\maketitle

\begin{flushright}
    \includegraphics[width=2in]{signature} % adjust width as necessary or use scale

    \bigskip % optional
    Author McAuthorson
\end{flushright}

\end{document}

在此处输入图片描述

注意:[是作为命令的一部分读取的特殊字符。仅当您想将括号作为字符输入而不是在命令中使用它latex时才使用。\[

wesaPS:我在一个单独的文档中使用字体包生成了假签名.tex,然后对结果进行了截图。

相关内容