I'm writing my Master's thesis and I have to meet certain requirements:
- Body text: Calibri font, 12 points.
- Margins: Top, bottom, and right: 2.5 cm; Left: 3.5 cm. --> Seems that \geometry will work fine
- Multiple 1.2-point line spacing; 6-point spacing between paragraphs. --> \linespread ,maybe?
- Pagination: Page numbers centered at the bottom of the page; Calibri 10 points. --> No idea.
- Citation system and all others APA rules (http://www.apastyle.org/learn/tutorials/basics-tutorial.aspx). --> I will cry with this in the future...
- Footnotes: When necessary, Calibri 10 points.
About the worst issue, the font: when I try to compile with Calibri, I get an error message. In many similar posts, they mention LuaLaTeX or XeLaTeX which I have no idea of what they exactly are (but I use TexStudio and it seems to have them, despite not knowing what they are or how do they work). What can I do?
UPDATE.
Seems fixed. Just added
% !TeX program = xelatexas first line. Most of my work its done with PDFLatex, so I'm still compiling with that as default untill I learn about differences between them (and LuaLaTex) to choose other as main compiler.Done. The
geometrypackage works fine.Not sure if I made it or not. I added the command, but not sure the output to be 6pt.
Got numbering centered, but not at Calibri 10pt.
I only tried to add hanging indent by the moment. Too many rules to check at once.
Haven't tried yet. I usually avoid footnotes, so I don't even know how to make them.
Here the a sample code
% !TeX program = xelatex
\documentclass[12pt]{article}
\usepackage{lipsum}
\usepackage{fontspec}
\setmainfont{Calibri}
\usepackage[top=2.5cm, bottom=2.5cm, left=3.5cm, right=2.5cm]{geometry}
\usepackage{parskip}
\usepackage{indentfirst}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\rfoot{\fontsize{10}{12} \centering\thepage}
\begin{document}
\setstretch{1.2}
\setlength{\parskip}{6pt}
\setlength{\parindent}{1.27cm}
\section{Sección 1.}
\lipsum[1-25]
\section{Sección 2.}
\lipsum[26-30]
\subsection{Checking secctions.}
\lipsum[30-40]
\end{document}

The reason I've made a mixed post is because I read others posts with the Calibri problem, I didn't understood what's LauLatex or how to set it up, but in some of those posts also got new problems with margins, aligneation and bibliography after that change... However that Calibri setting is a must.
– Suiron May 23 '23 at 16:27Anyway, I'll update this post to improve it and showing on my try.
– Suiron May 23 '23 at 21:03- Uses Calibri similar typeface: Carlito in 12pt.
- Already uses 10pt for page numbering and centered. If you need to move it to the footer, change the command
- Inter paragraph spacing of 6pt is already implemented and 1.2 line-spacing
- Does have a external pdf as a cover page and watermark.
- Figures and Tables use APA like styles.
- Uses
- Page margins with
– Mane32 May 23 '23 at 22:59\fancyheadto\fancyfoot(seefancyhdrdocumentation)biblatexusing apa7 style.geometrypackage (already loaded with 2.5 all margin specification)\rfoot{\fontsize{10}{12} \centering\thepage}by\fancyfoot[C]{fontsize{10}{12}\selectfont\thepage}. I have no idea why command \selectfont is necessary, but another goal achieved. – Suiron May 24 '23 at 16:42