如何右對齊迷你頁?

如何右對齊迷你頁?

我在 minipage {.4\textwidth} 之前嘗試過 (flushright) ,文字區塊向右對齊,但稍微偏離邊緣 - 距邊緣左側約 12pt。我似乎無法將其與全寬度的其餘部分對齊。我在flushright之前有\vspace{-9cm}。該塊出現在正確的位置,只是它偏離了邊緣。我該如何解決這個問題?提前致謝。

答案1

只是猜測...

\documentclass{article}
%---------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%
\usepackage{lipsum}% For dummy text. Don't use in a real document
    
\begin{document}
\lipsum[11]
   
\medskip 
\hfill\begin{minipage}{0.5\linewidth}
      \lipsum[66]
      \end{minipage}
          
\medskip 
\lipsum[12]
\end{document}

在此輸入影像描述

相關內容