\documentclass[a4paper,12pt,oneside]{book}
\usepackage[
title,
titletoc,
toc,
page,
header
]{appendix}
\begin{document}
\tableofcontents
\chapter{333}
\section{444}
\chapter{Test}
\section{Some test}
\begin{appendices}
\chapter{test 1}
\begin{equation}\label{eq:4.1}
\Delta_1^2=a^2-b^2
\end{equation}
\chapter{test 2}
\begin{figure}
\caption{pic}
\end{figure}
\begin{table}
\caption{tabl}
\end{table}
\end{appendices}
\end{document}
appendix
по вкусу. \usepackage[caption=false]{subfig}
pdflatex sample
bibtex bu1
bibtex bu2
pdflatex sample
pdflatex sample
$ aptitude show printer-driver-cups-pdf
Пакет: printer-driver-cups-pdf
Версия: 3.0.1-5
Новый: да
Состояние: установлен
Установлен автоматически: нет
Приоритет: необязательный
Раздел: graphics
Сопровождающий: Debian CUPS Maintainers <debian-printing@lists.debian.org>
Архитектура: amd64
Размер в распакованном виде: 249 k
Зависит: cups, cups-client, ghostscript, libpaper-utils, libc6 (>= 2.7), libcups2 (>= 1.4.0)
Предлагает: system-config-printer
Заменяет: cups-pdf
Предоставляет: cups-pdf
Описание: printer driver for PDF writing via CUPS
CUPS-PDF provides a PDF Writer backend to CUPS. This can be used as a virtual printer in a paperless network or to perform
testing on CUPS.
Documents are written to a configurable directory (by default to ~/PDF) or can be further manipulated by a post-processing
command.
Desktop users might find it simpler to use the Print To File feature provided by GTK+ and QT or the LibreOffice's Export
to PDF feature.
Почему нельзя привязать к счету PayPal свой сберегательный банковский счёт?
Атом, ты где?
Есть ли для него расширение, аналогичное функционалу Pycharm
непонятно как и куда двигаться, чтобы заняться чем нравится.
а нравится мне думать и придумывать новые решения
Как получить высокий CTR на фрилансе?
$ pandoc --version | head -n1
pandoc 2.9.2.1
# test.yaml
from: markdown
to: latex
output-file: test.tex
input-file: test.md
template: eisvogel
standalone: true
$ pandoc -d test
$
Киселев - очень сухо и слегка не понятно.
Чтобы было буквально все, и признаки делимости, и нод с ноком, вот все, от и до (если есть такой учебник ).
Малой захотел программировать, что ему сказать?
8лет
Вопрос есть ли такой университет где изучается только веб-технологии?
#!/usr/bin/env bash
# To run this script you need to install https://rclone.org/ first
# Use current date and time for future backup folder name
TIMESTAMP=$(date +"%F_%T")
# Declare the directory where the temporary backup files will be stored
BACKUP_DIR="/user/backup/$TIMESTAMP"
# State the username for your MySQL / MariaDB instace that can access the neccessary databases
MYSQL_USER="user"
# Point this script to mysql executable file
MYSQL=/usr/bin/mysql
# State the password to the username above
# Be aware that using plain password is unsecure
MYSQL_PASSWORD="password"
# Point this script to mysqldump executable file
MYSQLDUMP=/usr/bin/mysqldump
# Declare the name of the remote that will be used as a remote storage
REMOTE="cloud"
# Create the temporary backup directory in case it doesn't exist
mkdir -p "$BACKUP_DIR"
# Get the list of all databases in your local MySQL / MariaDB instance
databases=$($MYSQL --user=$MYSQL_USER -p$MYSQL_PASSWORD -e "SHOW DATABASES;" | grep -Ev "(Database|information_schema|performance_schema)")
# Start a cycle
for db in $databases; do
# Echo the starting notice
echo -e "===\nStarted working with the $db."
# Use mysqldump to create and actual backup of your database
$MYSQLDUMP --user=$MYSQL_USER -p$MYSQL_PASSWORD --databases "$db" | gzip > "$BACKUP_DIR/$db.sql.gz"
# Use rclone to upload files to the remote backup server
rclone copy "$BACKUP_DIR/$db.sql.gz" $REMOTE:$BACKUP_DIR
# Echo the result
echo -e "===\nFinished backup process for $db. Check your remote folder or watch for errors."
done
~/.my.cnf
вместо впендюривания в скрипт имени пользователя, пароля и т.д.