|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <meta http-equiv="Content-Type" content="text/html;charset=utf8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> |
| 6 | + <meta charset="utf-8"> |
| 7 | + |
| 8 | + <title>@abaqueiro on qpdf</title> |
| 9 | +<style> |
| 10 | +* { |
| 11 | + box-sizing: border-box; |
| 12 | +} |
| 13 | +html { |
| 14 | + /* |
| 15 | + background-color: rgb(39,40,34); |
| 16 | + color: white; |
| 17 | + */ |
| 18 | +} |
| 19 | +body { |
| 20 | + font-family: sans-serif; |
| 21 | + /*font-weight: 300;*/ |
| 22 | +} |
| 23 | +h1 { |
| 24 | + color: purple; |
| 25 | + /* |
| 26 | + color: rgb(162,129,255); |
| 27 | + color: rgb(100,100,98); |
| 28 | + */ |
| 29 | +} |
| 30 | + |
| 31 | +#brand { |
| 32 | + border-top: 1px solid black; |
| 33 | + border-bottom: 1px solid black; |
| 34 | +} |
| 35 | +#brand .author { |
| 36 | + font-weight: bold; |
| 37 | + display: inline-block; |
| 38 | +} |
| 39 | +#brand .pub_date { |
| 40 | + margin: auto; |
| 41 | + right: 10px; |
| 42 | + display: inline-block; |
| 43 | + position: absolute; |
| 44 | +} |
| 45 | +#brand a |
| 46 | +,#brand a:visited |
| 47 | +{ |
| 48 | + text-decoration: none; |
| 49 | + color: black; |
| 50 | +} |
| 51 | +#brand a:hover { |
| 52 | + color: blue; |
| 53 | +} |
| 54 | + |
| 55 | +h2 { |
| 56 | + color: darkred; |
| 57 | + /* |
| 58 | + color: rgb(249,38,144); |
| 59 | + color: rgb(131,38,65); |
| 60 | + */ |
| 61 | +} |
| 62 | +dt { |
| 63 | + color: blue; |
| 64 | + font-weight: 400; |
| 65 | + /* |
| 66 | + color: rgb(249,38,144); |
| 67 | + color: rgb(162,129,255); |
| 68 | + */ |
| 69 | +} |
| 70 | +dd { |
| 71 | + margin-bottom: 20px; |
| 72 | +} |
| 73 | +u { |
| 74 | + color: blue; |
| 75 | +} |
| 76 | +img { |
| 77 | + width: 100%; |
| 78 | +} |
| 79 | +/* |
| 80 | +a { |
| 81 | + color: yellow; |
| 82 | +} |
| 83 | +*/ |
| 84 | +a:visited { |
| 85 | + color:blue; |
| 86 | +} |
| 87 | +b { |
| 88 | + color: darkred; |
| 89 | + /* |
| 90 | + color: rgb(249,38,144); |
| 91 | + */ |
| 92 | +} |
| 93 | +</style> |
| 94 | +</head> |
| 95 | +<body> |
| 96 | +<div id="brand"> |
| 97 | + <div class="author"><a href="../index.html">Alfonso Baqueiro Bernal</a></div> |
| 98 | + <div class="pub_date">Wednesday August 9, 2023</div> |
| 99 | +</div> |
| 100 | + |
| 101 | +<h1>qpdf</h1> |
| 102 | + |
| 103 | +<p> |
| 104 | +qpdf is a library and a command to work with PDF files |
| 105 | +</p> |
| 106 | + |
| 107 | +<dt>combine several pdf files into one</dt> |
| 108 | +<dd><b>qpdf --empty --pages </b> a.pdf b.pdf c.pdf <b>--</b> combined.pdf</dd> |
| 109 | + |
| 110 | +<h2>References</h2> |
| 111 | + |
| 112 | +<ul> |
| 113 | +<li><a target="_blank" href="https://qpdf.readthedocs.io/en/stable/cli.html">qpdf manual: running qpdf</a></li> |
| 114 | +</ul> |
| 115 | + |
| 116 | +</body> |
| 117 | +</html> |
0 commit comments