在我名字的右側插入我的簽名圖片

在我名字的右側插入我的簽名圖片

我有以下文件。這

我需要兩個調整。

  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,然後對結果進行了螢幕截圖。

相關內容