I have a school assigment which demands to use Times New Roman for general content and Lucida Caligraphy for image captions.
But I don't know how to do that, when I try to add lucidabr the compiler launches the next error (I think it crashes with tikz library arrows.meta but I'm not sure)
! LaTeX Error: Command `\hbar' already defined.
See the LaTeX manual or LaTeX Companion for explanation.
l.673 ...reMathSymbol{\hbar}{\mathord}{arrows}{27}
\documentclass[UTF8,12pt]{article}
%%%%%%% Document configuration %%%%%%%
\usepackage[english,spanish,es-tabla]{babel}
\usepackage[letterpaper, margin=2.5cm]{geometry}
\setlength{\parskip}{1em}
\usepackage{ragged2e}
\decimalpoint
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%% Fonts %%%%%%%%%%%
\usepackage{mathptmx}
\usepackage{titlesec}
\titleformat{\section}{\normalfont\fontsize{16}{15}\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}{\normalfont\fontsize{14}{15}\bfseries}{\thesubsection}{1em}{}
\titleformat{\subsubsection}{\normalfont\fontsize{14}{15}\bfseries}{\thesubsection}{1em}{}
\titlespacing\section{0pt}{12pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\titlespacing\subsection{0pt}{8pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\titlespacing\subsubsection{0pt}{8pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
% The line below produces the error mentioned in 1.%
\usepackage[altbullet]{lucidabr}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%% Other %%%%%%%%%%%
\usepackage[shortlabels]{enumitem}
\usepackage[hidelinks]{hyperref}
\usepackage{multicol}
\usepackage{adjustbox}
\usepackage[normalem]{ulem}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%% Math %%%%%%%%%%%
\usepackage{amsmath}
\usepackage{siunitx}
\usepackage{xfrac}
\sisetup{per-mode = fraction, group-separator={,}}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% Figures %%%%%%%%%%
\usepackage{graphicx}
\graphicspath{{./Figures/}}
\usepackage[font=small, labelsep=period]{caption}
\usepackage{subcaption}
\usepackage[capposition=top]{floatrow}
\usepackage[spanish]{cleveref}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% Draws %%%%%%%%%%
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows.meta}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% Glossaries %%%%%%%%%%
\usepackage[toc, acronym]{glossaries}
\makeglossaries
\loadglsentries{Glossary.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% Bibliography %%%%%%%%%%
\usepackage[backend=biber,style=apa,citestyle=apa,hyperref=true,url=true]{biblatex}
\addbibresource{References.bib}
\usepackage{csquotes}
\setquotestyle[mexican]{spanish}
%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\pagenumbering{gobble}
\nocite{*}
\frenchspacing
All the document is in Times New Roman but figure captions and math
\end{document}
Am I doing something wrong? Should I use another packager for lucida and which? or How do I solve this error?
I appreciate your time and any help
I use PDFLatex.

mathptmxandlucidabr? Given its poorish math support I would never usemathptmx– daleif Nov 30 '21 at 09:08mathptmxprovides support for Times font,lucidabrfor lucida. as I'm using PDFLatex I didn't want to try with this answer, because it says to be for LuaLaTeX or XeLaTeX – Eduardo Jiménez Nov 30 '21 at 20:25