diff options
author | Skiz <skiznet@aol.com> | 2024-10-01 15:12:25 -0400 |
---|---|---|
committer | Skiz <skiznet@aol.com> | 2024-10-01 15:12:25 -0400 |
commit | 832da054627c9ae84def735fe4fe1148a1ce4ef2 (patch) | |
tree | 7093879bd5cd5fd421cea425b9b609bf171410d3 |
Made gitignore and setup base bible format
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | bibletex.tex | 50 |
2 files changed, 53 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0749439 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.aux +*.log +*.pdf diff --git a/bibletex.tex b/bibletex.tex new file mode 100644 index 0000000..d962baf --- /dev/null +++ b/bibletex.tex @@ -0,0 +1,50 @@ +\documentclass[12pt,twocolumn]{book} +\usepackage[a4paper,margin=1in]{geometry} % Page size and margins +\usepackage{paracol} % For two-column layout +\usepackage{fontspec} % For custom fonts +\usepackage{fancyhdr} % For custom headers/footers +\usepackage{verse} % For verse numbering +\usepackage{titlesec} % For customizing chapter and section titles +\usepackage{lipsum} + +% Add column rule for line between columns +\setlength{\columnseprule}{1pt} % Line width of the separator + +% Custom header/footer +\pagestyle{fancy} +\fancyhf{} % Clear all header and footer fields + +% Page number at the top center +\fancyhead[C]{\thepage} % Page number at the top center +\fancyhead[R]{\rightmark} % Section title at the top right + +% Custom footnotes format +\renewcommand{\footnoterule}{% + \kern -3pt + \hrule width \textwidth height 1pt + \kern 2pt +} + +% Format section titles to include the section number +\titleformat{\section}[runin]{\normalfont\Large\bfseries}{}{0em}{} % Adjust as needed + +\begin{document} + +% Title page +\begin{titlepage} + \centering + \vspace*{2in} + {\Huge\bfseries The Holy Bible \\[0.5cm] Classic Edition\par} + \vfill + {\large\itshape Translated and formatted in \LaTeX\par} + \vfill + \today +\end{titlepage} +\newpage + +\section{Test} + +\lipsum[1-50] + +\end{document} + |