如何右对齐小页面?

如何右对齐小页面?

我在 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}

在此处输入图片描述

相关内容