如何才能将一段文字的边距移动4厘米?

如何才能将一段文字的边距移动4厘米?

我正在写一封信,我想将目的地地址移到距边缘 4 厘米处。我尝试如下:

Patrick Forence\\ 
Street of birds 3\\
1234-Paris\\

\hspace{4cm}John McLee\\    
\hspace{4cm}Street of flowerq 2\\
\hspace{4cm}1234-Paris

但它不起作用。我使用的包是:

\documentclass [a4paper,10pt]{report}

%%%% PACKAGE %%%%%%%%%%%%%%%%%%%
\usepackage{fullpage}

\usepackage{boiboites}

\usepackage{wrapfig}

\usepackage[utf8]{inputenc}

\usepackage[french]{babel}

\usepackage[T1]{fontenc}

\usepackage{graphicx}

\usepackage{fancyhdr}

\usepackage{color}

\usepackage{amsmath}

\usepackage{amssymb}

\usepackage{amsthm}

\usepackage{mathrsfs}

\usepackage{hyperref}

\usepackage{enumitem}

答案1

正如 Arash Esbati 提到的,您需要使用\hspace*{}。这是一个有效示例:

信

\documentclass{report}

\begin{document}

\noindent Patrick Forence\\ 
Street of birds 3\\
1234-Paris\\

\noindent\hspace*{4cm}John McLee\\    
\hspace*{4cm}Street of flowerq 2\\
\hspace*{4cm}1234-Paris

\end{document}

相关内容