I was trying to enlarge a bit some equations, and I tried EVERYTHING.
\large \Large \begin{large} \mathlarger..
None of those commands work. I don't know what to try. Does anyone have some idea?
If this help, here is my LaTeX "starting code":
\documentclass[danish, a4paper, 12pt]{report}
%\documentclass{article}
\usepackage[paperheight=28cm, paperwidth=20cm, margin=2cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[urw-garamond]{mathdesign}
\usepackage[english]{babel}
%\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[usenames,dvipsnames]{color}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{tabularx}
\usepackage{amsopn}
\usepackage{xparse}
\usepackage{physics}
\usepackage{wasysym}
\usepackage{pstricks}
\usepackage{pspicture}
\usepackage{mathrsfs}
\graphicspath{{"Immagini/"}}
\usepackage{mathtools}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}
\definecolor{ballblue}{rgb}{0.13, 0.67, 0.8}
\definecolor{apple}{rgb}{0.55, 0.71, 0.0}
\definecolor{awesome}{rgb}{1.0, 0.13, 0.32}
\definecolor{azure}{rgb}{0.0, 0.5, 1.0}
\newcommand\Large{\@setfontsize\Large\@xviipt{22}}
\DeclareMathOperator{\de}{\text{d}}
\newenvironment{sistema}%
{\left\lbrace\begin{array}{@{}l@{}}}%
{\end{array}\right.}
\renewcommand\theequation{\arabic{equation}}
\begin{document}
cui e chiesto un tempo $t^*$ per il quale il peso e il doppio, ossia
$$P(t^*)=2P_0$$
Si agisce come prima, solo che in questo caso l'incognita è il tempo,
e si scrive
$$2P_0 = \scalebox{2}{e^{\frac{\ln(1.4)}{30}\ t^*}}$$
\end{document}
As you can see, I also tried with
\newcommand\Large{\@setfontsize\Large\@xviipt{22}}
and nothing happens...
After having tried with "scale box" and after having failed again... here is a screenshot of the log.




\definecolor{awesome}{rgb}{1.0, 0.13, 0.32}which is clearly not related to the problem – Au101 Nov 28 '16 at 20:25foois astonishing. But, still, it's definitely good to learn about minimising your examples, it can only help you, because otherwise the problem can easily be lost in loads of unnecessary code. Also if you load a non-standard package, people may even have to go to the trouble of installing it before they can even start on your problem. Clearly this doesn't help you – Au101 Nov 28 '16 at 20:30Why has this one to be that complicated?
– Henry Nov 28 '16 at 20:33\newcommand\Large{\@setfontsize\Large\@xviipt{22}}from the preamble. I can't possibly work; for one,\Largeis already defined by LaTeX; hence,\newcommand\Large{...}must throw an error message. – Mico Nov 28 '16 at 20:45\large\begin[equation}1=2\end{equation}would make a large equation (there is some fine tuning you could do the vertical space but the equation will be large) – David Carlisle Nov 28 '16 at 20:51\large$$1=2$$would be large as well (but actually I see you only wanted to make a subterm large, in which case$$a=\mbox{\large$\sqrt{x}$}$$would work as well. (but$$is not latex syntax. – David Carlisle Nov 28 '16 at 20:53$$ ... $$is a TeX command. It should not be used in LaTeX, there are many things wrong with it. The LaTeX shorthand is\[ ... \]. This is what you need to use. Note one immediate advantage, it's easy to see where it starts\[and where it ends\]. If I am looking at your source code and I see$$how do I know whether I am entering or leaving display math mode? – Au101 Nov 28 '16 at 20:56