Text Formatting ⇒ Appearance of a Document – Page Style and Font
Appearance of a Document – Page Style and Font
Can I change style of letters like in Word (Arial, roman, ...) or can I change page style?
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Appearance of a Document – Page Style and Font
Hi sobiki,
welcome to the board!
Since you have very basic questions, I recommend to read an introduction. You can find some here: LaTeX Resources for Beginners.
Stefan
welcome to the board!
Yes, you can. LaTeX offers commands for switching to sans serif fonts (like Arial), to roman font (such as Times Roman), and to typewriter font (such as Courier). Which font should be used for each of these font families, is usually specified in the preamble. With standard LaTeX you can use fonts which are similar to the one you mentioned. For example, load Helvetica instead of Arial, because Arial is known to be a lower quality clone of Helvetiva. With XeLaTeX you can access also your "original" Arial and Roman fonts, like all system fonts.sobikl wrote:Can I change style of letters like in word(arial, roman,....)
Yes, of course. LaTeX is a high quality typesetting program, which can be used to design also the page style. It depends what you mean with style - headings, margins, page numbering etc.sobikl wrote: or can I change page style?
Since you have very basic questions, I recommend to read an introduction. You can find some here: LaTeX Resources for Beginners.
Stefan
LaTeX.org admin
Appearance of a Document – Page Style and Font
How can I do that? (What do I have to write in preamble to change letters in Arial)?Stefan_K wrote:Yes, you can. LaTeX offers commands for switching to sans serif fonts (like Arial), to roman font (such as Times Roman), and to typewriter font (such as Courier). Which font should be used for each of these font families, is usually specified in the preamble. With standard LaTeX you can use fonts which are similar to the one you mentioned. For example, load Helvetica instead of Arial, because Arial is known to be a lower quality clone of Helvetiva. With XeLaTeX you can access also your "original" Arial and Roman fonts, like all system fonts.
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Appearance of a Document – Page Style and Font
For getting the original Helvetica:sobikl wrote:How can I do that? (What do I have to write in preamble to change lettere in arial)?
Code: Select all
\usepackage{helvet}
\renewcommand*{\familydefault}{\sfdefault}
If you really would like to use the Microsoft version, have a look at: The Scourge of Arial.
Stefan
LaTeX.org admin
Appearance of a Document – Page Style and Font
If I paste this in preamble all text disappears, just math symbols stay. Why?Stefan_K wrote:Code: Select all
\usepackage{helvet} \renewcommand*{\familydefault}{\sfdefault}
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Appearance of a Document – Page Style and Font
Perhaps show a (reduced) copy of your code here, otherwise it's hard to guess what went wrong. When I used those lines, text never disappeared.
Stefan
Stefan
LaTeX.org admin
Re: Appearance of a Document – Page Style and Font
I just copy this two lines in preamble. Perhaps I shoud do anathying else?
What other possibilities are for changing letter types?
What other possibilities are for changing letter types?
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Appearance of a Document – Page Style and Font
LaTeX.org admin
Re: Appearance of a Document – Page Style and Font
Ok thanx, that changes the letter type. But how can How can I change the whole document in other type? And where can I look all the possible styles?
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Appearance of a Document – Page Style and Font
Bysobikl wrote:Ok thanx, that changes the letter type. But how can How can I change the whole document in other type?
Code: Select all
\renewcommand*{\familydefault}{\sfdefault}
Have a look at the LaTeX Font Catalogue.sobikl wrote: And where can I look all the posible styles?
Stefan
LaTeX.org admin