次のような文書があります。
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
\[
wesa
PS:別のドキュメントでフォント パッケージを使用して偽の署名を生成し.tex
、結果のスクリーン ショットを撮りました。