법원 양식용 스타일 파일: 신청, 진술서 등?

법원 양식용 스타일 파일: 신청, 진술서 등?

법원 양식에 필요한 형식과 텍스트는 각 관할권에 따라 다릅니다. 이를 위해서는 각 대학의 논문 및 논문 요구 사항에 대한 사용자 정의 스타일 파일과 유사한 사용자 정의 스타일 파일이 필요합니다. 내가 처음부터 직접 작성하기 전에 다른 사람들이 공유할까요?

샘플 진술서 양식

답변1

일반적으로 페이지를 직사각형 블록이나 프레임으로 나눈 다음 상용구 텍스트와 매크로 변수로 채우는 것이 일반적인 방법입니다.

그러나 두 개의 이름, 날짜 및 항목 세트(절/이유)는 서지 항목의 구조이며, 이는 biblatex 및 해당 데이터 모델 기능을 사용하는 아이디어를 제안합니다. ... 각 원인은 이유가 있는 하나의 턱받이 항목입니다. 항목별 세트:

전체보기;

전체보기

세부 사항:

상반부:

상반부

하반부:

하반부

실현 가능 한.

<<편집됨: 답변의 원래 버전은 다음과 같습니다. "아직 약간의 조정이 필요합니다." 조정이 완료되었습니다. 테두리가 추가되었습니다(TikZ를 통해). 하위 목록이 제거되기 전의 빈 줄; 이름과 날짜에 사용되는 저장 상자; 보다 균형 잡힌 외관을 위해 시그니처 위치가 약간 이동되었습니다. cellspace표 형식의 줄 아래 공간을 확보하기 위해 패키지합니다 . MWE 코드가 업데이트되었습니다. >>

또한 페이지 크기 및 글꼴도 적절/필수로 설정해야 합니다.

상자 장식은 배경 레이어에 tikz 또는 eso-pic을 사용하여 수행할 수 있습니다.

MWE

\begin{filecontents*}[overwrite]{\jobname.bib}
@xdata{cc6,
courtname={CIRCUIT COURT OF ILLINOIS},
courtrank={Sixth Judicial Circuit},
courtjurisdiction={Champaign County},
}
@xdata{lsk,
clerkname={LSK},
clerkaddressa={address line 1},
clerkaddressb={address line 2},
}

@misc{A01,
  petitioner = {D Ducke and M Mousse},
  sepdate = {2020-09-16},
  xdata = {cc6,lsk},
  template = {standardu},
  reasons = {irrdiff, imprec, livsep, waitwo, divprop, wairig, volact,  ackatt,},
}
@misc{A02,
  petitioner = {Jack Spratt and Jill Spratt},
  xdata = {cc6,lsk},
  sepdate = {1520-02-14},
  reasons = {irrdiff, imprec, livsep, waitwo, divprop, wairig, volact,  ackatt,},
}
@misc{item1,
itemdescription={item 1 description},
}
@misc{item2,
itemdescription={item 2 description},
}

@misc{irrdiff,
itemdescription={That irreconcilable differences have caused the irretrievable breakdown of their marriage.},
}
@misc{imprec,
itemdescription={That all efforts at reconciliation of the differences between the parties have heretofore failed or future attempts at reconciliation would be impractical and not in the best interest of the parties.},
}
@misc{livsep,
itemdescription={That the parties have lived separate and apart for a continuous period of more than six (6) months prior to the date of this Affidavit, having separated on or about \usebox{\sbdate}, and have remained living separate for all times thereafter.},
}
@misc{waitwo,
itemdescription={\vspace{-\itemsep}\vspace{-\baselineskip}\begin{enumerate}[topsep=0pt]\item That each of the parties hereto expressly waive the requirement that the continuous period of living separate and apart be in excess of two (2) years in order for the court to enter a Dissolution of  Marriage based upon irreconcilable differences which have cause the irretrievable breakdown of their marriage.\item  Each of the parties further stipulates that the requirement shall be reduced to a period of only in excess of six (6) months rather than in excess of two (2) years as provided by Section 401(a)(2) of the Illinois Marriage and Dissolution of Marriage Act. \end{enumerate}},
}
@misc{divprop,
itemdescription={That the marital property amd debt belonging to the parties has been divided according to the terms of the written agreement of the parties filed with the Joint Petition for Simplified Dissolution of Marriage    in this cause, and that the parties have executed all documents required to carry out the agreement.},
}
@misc{wairig,
itemdescription={That the parties waive any right either may have to a bifurcated hearing in this cause.},
}
@misc{volact,
itemdescription={That each of the parties represents that the signing of the Affidavit is their individual, sole, and voluntary act.},
}
@misc{ackatt,
itemdescription={That each of the parties accknowledges that he/she has the right to consult with an attorney and wither done so or has freely chosen not so do so.},
}
\end{filecontents*}




\begin{filecontents*}[overwrite]{courtform.dbx}
\DeclareDatamodelEntryfields[misc]{%
courtname,
courtrank,
courtjurisdiction,
petitioner,
reasons,
clerkname,
clerkaddressa,
clerkaddressb,
itemdescription,
sepdate,
}
\DeclareDatamodelFields[type=list, datatype=name]{%
petitioner,
}
\DeclareDatamodelFields[type=field, format=xsv, datatype=entrykey]{%
reasons,
}
\DeclareDatamodelFields[type=field, datatype=literal]{%
courtname,
courtrank,
courtjurisdiction,
clerkname,
clerkaddressa,
clerkaddressb,
itemdescription,
}
\DeclareDatamodelFields[type=field, datatype=date]{%
sepdate,
}
\end{filecontents*}




\documentclass[legal]{article}
\usepackage[margin=1.5cm]{geometry}
\usepackage{enumitem}
\usepackage{cellspace}%for space under hlines in tables
\setlength{\cellspacetoplimit}{0.5em}
%\usepackage{xcolor}
\usepackage[english]{babel}%for American date format for biblatex
%
\newsavebox{\sbdate}
\newsavebox{\sbpeta}
\newsavebox{\sbpetb}
%
%
%for the frame
\usepackage{tikz}
%
\usepackage[datamodel=courtform,
sepdate=comp,
dateabbrev=false]{biblatex}


\addbibresource{\jobname.bib}

\DeclareFieldFormat[misc]{itemdescription}{#1}

\newcommand{\entry}[1]{
    \item \entrydata{#1}{\printfield{itemdescription}}
}

\DeclareFieldFormat{reasons}{
    \begin{enumerate}[topsep=0pt]
        \forcsvfield{\entry}{reasons}
    \end{enumerate}
}


\DefineBibliographyStrings{english}{%
andothers = {\unspace},%remove et al. from first name, and the preceeding space
}

\DeclareFieldFormat{courtname}{\hfill\mkbibbold{#1}\hfill\ }
\DeclareFieldFormat{courtrank}{\hfill\mkbibbold{#1}\hfill\ }
\DeclareFieldFormat{courtjurisdiction}{\ \hfill\mkbibbold{#1}\hfill\ }



\DeclareCiteCommand{\citeitem}%
{}
{\printfield{itemdescription}}
{}
{}

\DeclareCiteCommand{\citeform}%
{}
{%
%top right corner of frame border:
\hfill \tikz[overlay,remember picture]\node[xshift=1.2em](ttr){};
%the form:
\bfseries
\savebox{\sbdate}{\printsepdate}%for re-use
\savebox{\sbpeta}{\printnames[][1-1]{petitioner}}%for re-use
\savebox{\sbpetb}{\printnames[][2-2]{petitioner}}%for re-use
\begin{center}\begin{tabular}{c}
\printfield{courtname}\\%
\\%
\printfield{courtrank}\\%
\printfield{courtjurisdiction}\\%
\end{tabular}\end{center}

\begin{tabular}{Sl}%S for extra vertical space
IN RE: THE MARRIAGE OF:\\
\\
\usebox{\sbpeta}\\%
\hline CO-PETITIONER\\%
\\
 \\
\usebox{\sbpetb}\\%
\hline CO-PETITIONER\\%
\\
\end{tabular}
\begin{tabular}{l}
\\
\\
\\%
\\
\\%
and \\
\\%
\\
\\%
\end{tabular}
\begin{tabular}{r}
\mbox{\hspace{2em}}\\
\\
)\\%
)\\
)\\%
)\\
)\\%
)\\
)\\%
\end{tabular}
\begin{tabular}{c}
\\
\\
\\%
\\
\\%
\hspace{3em}Case No. \underline{\hspace{12em}} \\
\\%
\\
\\%
\end{tabular}

\begin{center}\begin{tabular}{c}
JOINT AFFIDDAVIT REGARDING SEPARATION OF THE PARTIES, DIVISION OF\\
PROPERTY AND DEBT AND WAIVER OF BIFURCATED HEARING\\
\end{tabular}\end{center}

\mdseries
Co-Petitioners, \usebox{\sbpeta}, and \usebox{\sbpetb}, being first sworn on their oaths, depose and state as follows:

\printfield{reasons}
\vfill
\ \hspace{5em}
\begin{tabular}{Sc}%with vertical space
\hspace{40em}\\
\hline (Co-Petitioner's Signature)
\end{tabular}
\hfill
\begin{tabular}{Sc}
\hspace{4em}\\
\hline (Co-Petitioner's Signature)
\end{tabular}\hspace{7em}

%bottom left corner of frame border:
\tikz[overlay,remember picture]\node[xshift=-2em](bbl){};

\begin{center}\begin{tabular}{c}
\printfield{clerkname}\\
\printfield{clerkaddressa}\\
\printfield{clerkaddressb}\\
\end{tabular}\end{center}

%draw the frame:
\begin{tikzpicture}[overlay,remember picture]
   \draw[black, thick] (bbl) rectangle (ttr);
\end{tikzpicture}
}%
{}
{}
%========================

\renewcommand\thepage{}% remove page number

\begin{document}
\nocite{irrdiff,imprec,livsep,waitwo,divprop,wairig,volact,ackatt}
\citeform{A01}
\newpage
\citeform{A02}

\end{document}

xsv추가하도록 편집됨: -list 필드를 사용하여 다른 bibentries를 호출하는 방법 에 대한 핵심 방법론이 여기에서 조정되었습니다.Biblatex: 복잡하게 중첩된 미출판 소스 인용아카이브 구성 요소 참조에 대한 질문입니다.

이 방법론은 전시 목록, 항소 서적, 기본적인 논쟁 권위 종속성, 미술관 전시 카탈로그, TV 쇼 수집품(또는 우표 또는 동전), 고고학 유적지 발견, 학생 및 학생을 위한 독서(또는 활동) 목록에 적용하도록 조정될 수 있습니다. 주제, 연도, 수준 등으로 정렬됩니다.

관련 정보