\documentclass{article} \usepackage{xcolor} \definecolor{Caution}{HTML}{F9A800} \definecolor{Warning}{HTML}{D05D29} \definecolor{Prohibition}{HTML}{9B2423} \definecolor{Mandatory}{HTML}{005387} \definecolor{Rescue}{HTML}{237F52} \definecolor{Backgrounds}{HTML}{ECECE7} \definecolor{Symbol}{HTML}{2B2B2C} \usepackage{array} \usepackage{setspace} \usepackage{hyperref} \hypersetup{ colorlinks=true, linkcolor=black, filecolor=magenta, urlcolor=black, citecolor=black } \urlstyle{same} \usepackage{verbatim} \makeatletter \newcommand{\verbatimfontfamily}[1]{\def\verbatim@font{#1}}% \makeatother \usepackage{colortbl} \usepackage{amssymb} \usepackage{pdflscape} \usepackage{geometry} \geometry{ left=2cm, right=2cm, top=3cm, bottom=3cm } \usepackage{tcolorbox} \definecolor{logocolor}{HTML}{6610f2} \definecolor{logocolordark}{HTML}{1f0647} \usepackage{lcep} \begin{document} \thispagestyle{empty} \tcbset{colback=logocolor,colframe=logocolordark} \begin{flushright} \begin{tcolorbox}[leftrule=3mm,arc=0mm,width=4.5cm] \begin{center} {\Large\textcolor{white}{\it\bf VERSION 1}} \end{center} \end{tcolorbox} \end{flushright} \begin{flushright} \begin{tcolorbox}[leftrule=3mm,arc=0mm,width=6.5cm] \begin{center} {\Large\textcolor{white}{\it\bf September 1, 2025}} \end{center} \end{tcolorbox} \end{flushright} \hspace{0pt} \vfill \begin{center} \includegraphics[scale=1.0]{bootstrapicons_logo.pdf} \end{center}\vspace{2mm} \begin{center} \href{https://github.com/BenSt099/bootstrapicons}{\textcolor{black}{Link $\looparrowright$}} \end{center} \vfill \hspace{0pt} \newpage \thispagestyle{empty} \doublespacing \tableofcontents \singlespacing \newpage \thispagestyle{empty} \begin{center} \begin{tcolorbox}[colback=white,colframe=gray-700, width=7cm,halign=center,boxrule=0.2mm] {\Large The {\sffamily bootstrapicons} package} Manual for version 1 \end{tcolorbox}\vspace{15mm} \href{https://www.ctan.org/pkg/bootstrapicons}{\textcolor{blue-700}{https://www.ctan.org/pkg/bootstrapicons}}\vspace{6mm} \href{https://github.com/BenSt099/bootstrapicons}{\textcolor{blue-700}{https://github.com/BenSt099/bootstrapicons}} \end{center}\vspace{7mm} \begin{abstract} \noindent This is the official documentation of the package \textbf{bootstrapicons}. It contains over 2,000 icons from Bootstrap that can be used for all kind of projects. \end{abstract}\vspace{10mm} \begin{tcolorbox}[leftrule=3mm,colback=red-200,colframe=red-800,lower separated=false,sidebyside,lefthand width=1.5cm] \includegraphics[scale=0.25]{danger.pdf}\tcblower {\bf\textcolor{red-800}{ATTENTION!}} This is NOT an official package from the frontend framework \textbf{Bootstrap} (\href{https://getbootstrap.com/}{\textcolor{blue-700}{https://getbootstrap.com/}}). \end{tcolorbox} \newpage \section{Installation} The package is included in \TeX Live and Mik\TeX. You can also install it via the package managers that are included in your distribution. If you would like to install it manually, please download the package from GitHub (\href{https://github.com/BenSt099/bootstrapicons/releases}{\textcolor{blue-700}{https://github.com/BenSt099/bootstrapicons/releases}}). After that, please unzip the package and put it into the directory, where your distribution puts its packages, e.g. for \TeX Live 2024 (Windows) you would put the package into this folder: \begin{verbatim} C:\texlive\2024\texmf-dist\tex\latex\ \end{verbatim}\vspace{2mm} \noindent After this step, there should be a folder with path: \begin{verbatim} C:\texlive\2024\texmf-dist\tex\latex\bootstrapicons\ \end{verbatim}\vspace{2mm} \noindent in which the two files \begin{verbatim} bootstrapicons.sty bootstrapicons_complete.pdf \end{verbatim} and several folders should reside. After that, you have to update the name database. Depending on your distribution, this could be achieved with e.g.: \texttt{mktexlsr}. You can verify your installation by trying it out. \section{Loading the package \& Dependencies} You can load the package with the following command in the preamble: \vspace{5mm} \begin{tcolorbox}[colback=gray-200] \vspace{3mm} \begin{verbatim} \usepackage{bootstrapicons} \end{verbatim} \end{tcolorbox}\vspace{5mm} \noindent This package has the following dependencies: \texttt{graphicx} \newpage \section{Usage} \noindent This section deals with the construction of icons. Every icon has a number that is highlighted in red in the tables below. The icon \texttt{0-circle} e.g. has the number \colorbox{red-200}{\texttt{\bf 1}}. You can use the following command to include the icon in your pdf: \vspace{5mm} \begin{tcolorbox}[colback=gray-200] \vspace{3mm} \begin{verbatim} \Bicon{} \end{verbatim} \end{tcolorbox} \vspace{5mm} \noindent The command behaves like \texttt{includegraphics}. Therefore, if you wish to change angle, scale or other parameters, use \texttt{}. Below is an example:\vspace{5mm} \begin{tcolorbox}[colback=gray-200] \vspace{3mm} \begin{verbatim} %%% Example file \documentclass{article} \usepackage{bootstrapicons} \begin{document} \Bicon{14} \Bicon[scale=1.2,angle=90]{29} \end{document} \end{verbatim} \end{tcolorbox} \noindent\textbf{NOTE}: For more information about the icons, take a look at \href{https://icons.getbootstrap.com/}{\textcolor{blue-700}{https://icons.getbootstrap.com/}}. \end{document}