Document Classes ⇒ Enlarge XY-Pic diagrams?
Enlarge XY-Pic diagrams?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10364
- Joined: Mon Mar 10, 2008 9:44 pm
Enlarge XY-Pic diagrams?
a simple method would be using \scalebox or \resizebox of the graphicx package, for example:
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[all]{xy}
\usepackage{graphicx}
\begin{document}
\scalebox{2}{
\begin{xy}
\xymatrix{
A \ar[r]^f \ar[d]_i & B \ar[d]^j \\
C \ar[r]_g & D
}
\end{xy}}
\end{document}
Stefan
Re: Enlarge XY-Pic diagrams?
"\scalebox" works like a charm!