使用垂直橫幅格式化法庭文件

使用垂直橫幅格式化法庭文件

我正在嘗試用乳膠重新建立這份法庭文件,它是一個文字文件。

在此輸入影像描述

我在嘗試讓垂直列出現在左側時遇到問題,就像在 word doc 中一樣。它需要貫穿每一頁。我嘗試使用多列,

\documentclass{article}
\usepackage{multicol}
\usepackage{lipsum}
\begin{document}
\begin{multicols}{2}
[
\columnwidth=0.2\textwidth % set the width of the left column to 0.2 times the width of the text
]
text here
\bigskip

text two

\columnbreak % switch to the next column

\lipsum
\end{multicols}
\end{document}

但我似乎無法正確調整水平尺寸。

在此輸入影像描述

如果我能在我的追求中得到一些幫助,我將不勝感激。謝謝

答案1

這是一個易於理解的頁邊註釋範例。

\documentclass{article}
\usepackage[
  left=5cm,
  marginparwidth=3cm,
  marginparsep=1cm,
  ]{geometry}

\usepackage{marginnote}
\reversemarginpar
\renewcommand*{\raggedleftmarginnote}{}

\usepackage{lipsum}

\begin{document}

\marginnote{Text text text text text text text}
\lipsum[1]
\marginnote{Text text text text text text text}
\lipsum[2]

\end{document}

在此輸入影像描述

答案2

我以吹毛求疵的想法為基礎,向您展示 LaTeX 的可能性,以及與 Word 等文字處理程式的差異。您會發現,也許您的要求將會或必須在這裡或那裡改變。以下是基本想法。

佈局

若要覆寫標準佈局使用 package geometry,如已經所示。它引入了左邊距(以及所有其他),您可以用邊注填充它(如已經顯示的)。

文字變數

您的文件實際上“要求”此類變數。您可以使用\newcommand建立巨集來實現此目的。這裡它們都接受 0 個參數,就像您在序言中設定它們的值一樣。

在文件內容中,您只需呼叫它們即可\sher{}插入警長的訊息。這可以實現更高的一致性,因為您僅在巨集內部的一處變更內容(可能還包括格式)。

文件內

我介紹了\parindent 0pt,因為您的副本沒有縮排段落的第一行。我還介紹了\raggedright整個文檔,正如您的副本所建議的那樣。

現在,請記住我們正在模仿排版。例如,在古騰堡時代,為了引入空行,人們插入了一條上面沒有字母的鉛線(間隔物)。您可以在這裡使用\bigskip(或者\vspace{}如果您需要其他距離)。

在某些地方,\\可以「放置」回車符。我用它來稍微清理一下程式碼。否則,您需要在編輯器中輸入新行。

您也可以看到插入“文字變數”的各個位置。

\marginnote{}或多或少的作品(關於格式化)。您可能想查看以下內容:

  • 您可以像使用 Word 一樣輸入大量文本,用戶可以刪除這些文本
  • 在 LaTeX 中,透過提供更多宏,您也許有更好的選擇
  • 或者,這可能是最優雅的方法,您只需\input{}文件,其中每個文件都包含一個* Defender ...段落(此處未顯示)。

我輸入的文字\lipsum表明佈局不會改變。我本可以查看\marginnote{}第 2 頁,但是……也許您不再需要它,請參見上文。

前言

通常這部分會成長。我把包裹放在babel那裡。您可能不需要它,但用其他語言編寫此類模板的人可能需要。

或多或少就是這樣。

例子

\documentclass[12pt]{article}

% ~~~ layout ~~~~~~~~~~~~
\usepackage[
  left=5cm,
  marginparwidth=3cm,
  marginparsep=1cm,
  ]{geometry}

% ~~~ handling margin notes ~~~~~~~~~~~
\usepackage{marginnote}
\reversemarginpar
\renewcommand*{\raggedleftmarginnote}{}

% ~~~ language specific hyphenation ~~~~
\usepackage{babel}

% ~~~ some text for texts sake ~~~~~~~
\usepackage{lipsum}

% - - - abbreviations ~~~ CHANGE HERE ~~~~
%     individuals, institutions
\newcommand\shat[0]{Paloma County}
\newcommand\sher[0]{sheriffdom}

\newcommand\AB[0]{Sheldon Cooper, Texas}
\newcommand\CD[0]{Will Weaton, Los Angeles}
\newcommand\EF[0]{Judge Willson}

%     what it's all about
\newcommand\summ[0]{\textsterling{}1.000}
\newcommand\circum[0]{attaching an unrespectful note to the front door}


% ~~~ and now: the content ~~~~~~~~~~~
\begin{document}

\parindent 0pt  % you don't want the fist line indented
\raggedright    % if you want the whole document that way

\marginnote{Form 010}
\textbf{Form of third party notice}
\bigskip

\marginnote{Rule 20.1}
Court ref.no.
\bigskip

SHERIFFDOM OF \sher{}\\
AT \shat{}
\bigskip

THIRD PARTY NOTICE

in the cause\\
\AB{}, Pursuer

against\\
\CD{}, Defender
\bigskip

To \EF{}

You are given notice by \CD{} of an order granted by Sheriff NAME in this action in which \AB{} is the pursuer and \CD{} the defender. In the action the pursuer claims against the defender the sum of \summ{} damages in respect of \circum{}.

\marginnote{* Delete as appropriate}
* The defender admits (or denies) liability jadajadajada jadajadajada jadajadajada jadajadajada jadajadajada jadajadajada

* The defender denies liabilty for jadajadajada jadajadajada jadajadajada jadajadajada jadajadajada 

\lipsum[1-3]


\end{document}

聚苯乙烯:這可以「治癒」刪除邊距的格式:

\marginnote{\raggedright * Delete as appropriate}
* The defender

證明

相關內容