I add \href in \subsection{}, this make the url become all capital, how can I deal with this?
For example, I use \subsection{\href{http://finance.sina.com.cn/roll/2018-06-30/doc-iheqpwqz3115534.shtml}{some text}} and run latex, it shows like this.
And It contains an url.
Then when I click the link, the url becomes http://finance.sina.com.cn/ROLL/2018-06-30/DOC-IHEQPWQZ3115534.SHTML like this:
in the web-browser.
All the letters become capital, this url cannot open the right website.
What can I do to fix this? I want the url can open the right website. Thank you.
\begin{document} \MakeUppercase{\href{http://example.com/lowercase}{some text}}
\uppercase{\href{http://example.com/lowercase}{some text}} \end{document}`
– moewe Jul 07 '18 at 12:21\protected\def\mylink{http://example.com/lowercase}
\begin{document} \MakeUppercase{\href{\mylink}{some text}}
\uppercase{\href{\mylink}{some text}} \end{document}` but maybe there is something cleverer.
– moewe Jul 07 '18 at 12:24\lowercase{\href{http://example.com/lowercase}{some text}}– Mu30 murugans2katgmail Jul 09 '18 at 07:34