Page LayoutSimple document

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
guillaumemorgan
Posts: 1
Joined: Sat Jun 01, 2013 1:07 am

Simple document

Post by guillaumemorgan »

Hello,

Most of you are using LateX for math and science but I wanna start using it for my theology papers. The fact I can include nice Greek and Hebrew fonts is a big plus.

-my document needs to use Times New Roman 12pt.
-the margins must be 2.54cm X 3.17cm (the default Word margins)
-I need to use double space.

Let's forget the Greek and Hebrew right now. What do I need to add to get the font to size=12 and the proper margins. Could you tell me what's missing ?

This is what I got so far

Code: Select all

\documentclass{article}
\usepackage{times}
\usepackage{setspace}
\doublespacing
\begin{document}
This is \textbf{Times New Roman}.
\end{document}
Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

mas
Posts: 226
Joined: Thu Dec 04, 2008 4:39 am

Simple document

Post by mas »

Welcome to wonderful world of LaTeX :-)

You really should read the lshort for a good introduction to LaTeX. Since you are not going to use the maths, ignore that chapter.

To get 12pt for your document,

Code: Select all

\documentclass[12pt]{article}
Check out the package geometry for setting up margins, paper size etc. For your case, this should help

Code: Select all

\usepackage[left=2.54cm, right=3.17cm]{geometry}

OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Simple document

Post by Johannes_B »

After reading lshort, like mas suggested, you could take a look at koma-script. These classes and packages are more powerful than the standard classes.

In addition, XeLaTeX and LuaLaTeX are modern engines to set your document to pdf. Both of them natively support unicode, so you could easily write hebrew and greek charakters into your document (if you have the right keyboard).

But first of all, read lshort or LaTeX for complete novices.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply