奉獻詞中的標題怎麼寫?

奉獻詞中的標題怎麼寫?

我想把標題放得更大,但又不失去奉獻段落的對齊方式

在此輸入影像描述

\documentclass[a4paper,12pt]{article}
\usepackage[paper=a4paper,left=30mm,right=20mm,top=25mm,bottom=30mm]{geometry}

\newenvironment{dedication}
  {\clearpage           % we want a new page
   \thispagestyle{empty}% no header and footer
   \vspace*{\stretch{1}}% some space at the top 
   \raggedleft
   \leftskip=5cm
   \parindent=10pt
   \itshape             % the text is in italics

  }
  {\par % end the paragraph
   \vspace{\stretch{3}} % space at bottom is three times that at the top
   \clearpage           % finish off the page
  }

\begin{document}
\begin{dedication}
Dedicated to google and wikipedia by models (SaaS, PaaS, and IaaS), the CP provides the storage and processing facilities
needed to support that service model, together with a cloud interface for cloud
service consumers. For SaaS, the CP deploy
\end{dedication}
\end{document}

答案1

您可以使用範圍界定(使用{...}\begingroup... \endgroup)來限制 的效果\raggedleft,或者您可以使用\justifyingfromragged2e\raggedleft在or之類的內容之後恢復段落的合理外觀\centering

在此輸入影像描述

\documentclass{article}

\usepackage{ragged2e}

\newenvironment{dedication}
  {\clearpage           % we want a new page
   \thispagestyle{empty}% no header and footer
   \vspace*{\stretch{1}}% some space at the top 
   \raggedleft          % Flush with right margin
   \section*{Dedication}% Formatting of dedication title (as section*)
   \itshape             % the text is in italics
   \justifying          % layout of dedication paragraph

  }
  {\par                 % end the paragraph
   \vspace{\stretch{3}} % space at bottom is three times that at the top
   \clearpage           % finish off the page
  }

\begin{document}

\begin{dedication}
  Dedicated to google and wikipedia by models (SaaS, PaaS, and IaaS), the CP provides the storage and processing facilities
  needed to support that service model, together with a cloud interface for cloud
  service consumers. For SaaS, the CP deploy.
\end{dedication}

\end{document}

相關內容