Skip to content

Commit 1995a21

Browse files
committed
command qpdf added to toolset
new file: apuntes/commands/qpdf.html modified: apuntes/index.html
1 parent 61900ea commit 1995a21

2 files changed

Lines changed: 119 additions & 3 deletions

File tree

apuntes/commands/qpdf.html

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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>

apuntes/index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@
3232
<dt>Commands</dt>
3333
<dd>
3434
<ul>
35-
<li>
36-
<a href="commands/curl.html">curl</a>
37-
</li>
35+
<li><a href="commands/curl.html">curl</a></li>
36+
<li><a href="commands/qpdf.html">qpdf tool to work with PDF files</a></li>
3837
</ul>
3938
</dd>
4039

0 commit comments

Comments
 (0)