Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
LaTeX Cookbook

You're reading from   LaTeX Cookbook Over 90 hands-on recipes for quickly preparing LaTeX documents to solve various challenging tasks

Arrow left icon
Product type Paperback
Published in Oct 2015
Publisher Packt
ISBN-13 9781784395148
Length 378 pages
Edition 1st Edition
Tools
Arrow right icon
Author (1):
Arrow left icon
Stefan Kottwitz Stefan Kottwitz
Author Profile Icon Stefan Kottwitz
Stefan Kottwitz
Arrow right icon
View More author details
Toc

Table of Contents (14) Chapters Close

Preface 1. The Variety of Document Types FREE CHAPTER 2. Tuning the Text 3. Adjusting Fonts 4. Working with Images 5. Beautiful Designs 6. Designing Tables 7. Contents, Indexes, and Bibliographies 8. Getting the Most out of the PDF 9. Creating Graphics 10. Advanced Mathematics 11. Science and Technology 12. Getting Support on the Internet Index

Cutting an image to get rounded corners


The previous recipe gave us an edged image. It can be nice to have rounded corners, so let us take a look at how to achieve that.

How to do it...

We will use a few features of the very capable tikz graphics package:

  1. Load the tikz package in your preamble:

    \usepackage{tikz}
  2. Declare a box for storing the image:

    \newsavebox{\picbox}
  3. Define a macro that allows us to use our recipe repeatedly:

    \newcommand{\cutpic}[3]{
      \savebox{\picbox}{\includegraphics[width=#2]{#3}}
      \tikz\node [draw, rounded corners=#1, line width=4pt,
        color=white, minimum width=\wd\picbox,
        minimum height=\ht\picbox, path picture={
          \node at (path picture bounding box.center) {
            \usebox{\picbox}};
        }] {};}
  4. Use the new macro within your document to include an image:

    \cutpic{1cm}{8cm}{filename}
  5. Compile the document to see the effect:

How it works...

After loading the tikz package, we created a box to store the image. We defined a macro; its first task is to store our image...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime