如何左對齊奉獻

如何左對齊奉獻

我的程式碼是

\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 
   \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}
\begin{dedication}
Dedicated to google and wikipedia  
\end{dedication}
\end{document}

這是結果:

在此輸入影像描述

答案1

您發布的代碼指定了\raggedleft,這與您想要的相反。 \raggedright是你應該使用的。

您還希望左側有一個統一的縮排。將\raggedleft程式碼中的指令替換為以下內容:

\leftskip=2cm
\raggedright
\parindent=0pt

將此程式碼中的 替換2cm為您想要的縮排寬度。

程式碼採用「plain TeX」風格,而不是 LaTeX,但它應該可以正常工作,儘管一些 LaTeX 用戶更喜歡 LaTeX 特定的公式。

我試圖在評論中回答的原因是我目前沒有能力進行測試;我不喜歡提供未經測試的答案。

相關內容