私の名前のすぐ下に署名の写真を挿入してください

私の名前のすぐ下に署名の写真を挿入してください

次のような文書があります。これ

2つの調整が必要です。

  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

を使用することもできます\flushright。 の代わりに、scale元の署名の幅を測ってそれを使用することもできます。

\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、結果のスクリーン ショットを撮りました。

関連情報