献辞を正しく書くにはどうすればいいですか?

献辞を正しく書くにはどうすればいいですか?

縦方向のスペースをいくつか作ろうとしています。しかし、方法がわかりません。

私が使用しているコードは次のとおりです。

\newenvironment{dedication}
  {\clearpage           % we want a new page
   \thispagestyle{empty}% no header and footer
   \vspace*{\stretch{1}}% some space at the top 
   \itshape             % the text is in italics
   \raggedleft          % flush to the right margin
  }
  {\par % end the paragraph
   \vspace{\stretch{3}} % space at bottom is three times that at the top
   \clearpage           % finish off the page
  }

1 行の空行を取得するためにこれを試しても、何も取得されません。

\begin{dedication}
ABC \\ \\ DEF
\end{dedication}

Johnこのコードでフォント スタイルを変更するにはどうすればよいでしょうか。

\begin{dedication}
ABC \\ \\ DEF \\ \\
John
\end{dedication}

大いに感謝する!

答え1

\documentclass{book}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\newenvironment{dedication}
  {%\clearpage           % we want a new page          %% I commented this
   \thispagestyle{empty}% no header and footer
   \vspace*{\stretch{1}}% some space at the top
   \itshape             % the text is in italics
   \raggedleft          % flush to the right margin
  }
  {\par % end the paragraph
   \vspace{\stretch{3}} % space at bottom is three times that at the top
   \clearpage           % finish off the page
  }
\begin{document}
 \frontmatter              %% better to use this in book class
 \chapter{Dedication}
  \begin{dedication}
    ABC 
    \par   %% or a blank line
    \vspace{2\baselineskip}
    DEF

    \vspace{\baselineskip}
    \usefont{T1}{LobsterTwo-LF}{bx}{it}
    John
  \end{dedication}
%.
%.
%.
%.
\mainmatter             %% and use this for main chapters.
\chapter{Introduction}
\end{document}

ここに画像の説明を入力してください

の代わりに、またはなどを\vspace{2\baselineskip}使用することもできます。別のオプションとしては、\medskipbigskip

ABC \\[2\baselineskip]
DEF

上記のコメントで述べたように。

\normalfontなど\sffamilyの標準コマンドを使用して、フォント スタイルを変更できます。

関連情報