Text Formattinghow to change font back?

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
lemonicetea
Posts: 17
Joined: Sat Oct 10, 2009 9:28 pm

how to change font back?

Post by lemonicetea »

Hi all.
I have a chapter which have a table with 'tiny' font size. However, the following chapter is still using 'tiny' font size rather than the default text size. What should I do to change it back? Here is the code

Code: Select all

\documentclass[a4paper,12pt,oneside]{report}
\usepackage{graphicx}
\usepackage[left=4.5cm,right=2.5cm]{geometry}
\usepackage{epsfig}
\usepackage[margin=10pt,font=footnotesize,labelfont=bf]{caption}
\usepackage[singlespacing]{setspace}

\usepackage[english]{babel}

\begin{document}
\chapter{test1}
\tiny {
test tiny font
}
\chapter{test2}
blah blah
\end{document}
The chapter 2 is still using the tiny font size. Thanks a lot

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

how to change font back?

Post by localghost »

Learn something about switching between font sizes. You can do that by studying "The Unofficial LaTeX2e Reference Manual".

Code: Select all

\tiny
The quick brown fox jumps over the sleazy dog.
\normalfont

Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
lemonicetea
Posts: 17
Joined: Sat Oct 10, 2009 9:28 pm

Re: how to change font back?

Post by lemonicetea »

Cheers. Sorry about the silly question..I will definitely go through a latex textbook.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Re: how to change font back?

Post by Stefan Kottwitz »

You could also limit the effect of \tiny or other font changes by braces, like {\tiny text}.

Stefan
LaTeX.org admin
Post Reply