Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
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 (19) Chapters Close

LaTeX Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
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

Importing data from files


It can be very handy to get the data for the row entries from an external file. Actually, this can be done in a few lines.

How to do it...

We will load the datatool package, let it import data from a comma separated data file, sort it, and print it:

  1. Store your data in the same folder as your main tex document. Here, we will use the data from the last recipes, unsorted within a text file:

    Distribution,Hits
    Zorin,85
    Debian,1582
    CentOS,1171
    elementary,899
    Arch,1040
    Mint,2364
    openSUSE,1334
    Ubuntu,1838
    Mageia,1219
    Fedora,1262
  2. Start with a document class, such as article, and load the booktabs package for improved tabular layout, and the datatool package for data handling:

    \documentclass{article}
    \usepackage{booktabs}
    \usepackage{datatool}
  3. With these datatool commands, load the data from the file and sort it:

    \DTLloaddb{Linux}{linux.csv}
    \DTLsort{Hits=descending}{Linux}
  4. Start the document and set up a tabular environment:

    \begin{document}
    \begin{tabular}{rlr}
      & Distribution...
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 $15.99/month. Cancel anytime
Visually different images