带有垂直横幅的法庭文件格式

带有垂直横幅的法庭文件格式

我正在尝试用乳胶重新创建这份 Word 文档形式的法庭文件。

在此处输入图片描述

我无法让垂直列出现在左侧,就像在 Word 文档中一样。它需要贯穿每一页。我尝试使用多列,

\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

我基于 hair-splitter 的想法,向您展示 LaTeX 的可能性,以及它与 Word 等文字处理器的区别。您会发现,您的要求可能会或必须在这里或那里发生变化。以下是基本想法。

布局

要覆盖标准布局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

证明

相关内容