\i
usa a função de contagem em vez de mostrar o caractere "ı". Tentei \i
, {\i}
$$\i$$
mas \imath
\text{\i}
continua contando.
\documentclass[12pt, letterpaper, oneside]{article}
\usepackage[T1]{fontenc}
\usepackage[turkish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{datetime}
\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{tabularx}
\usepackage{url}
\usepackage{booktabs}
\usepackage{titlesec}
\usepackage{float}
\usepackage{hyperref}
\usepackage{hypcap}
\usepackage{apacite}
\usepackage{needspace} %sayfa sonu boşluklarını ayarlamak için
\usepackage[section]{placeins}
\usepackage{xcolor}
\hypersetup{
colorlinks,
linkcolor={red!50!black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}
\bibliographystyle{apacite}
\usepackage{fancyref}
\usepackage{tikz}
\usetikzlibrary{babel}
\usepackage{pgf-pie} %piechart için
\usepackage{subcaption}
\usepackage{pgfplots}
\usepackage{longtable}
\usepackage{makecell}
\usepackage{booktabs}
\usepackage{lscape}
\usepackage[font={footnotesize}]{caption}
\newcommand{\sekil}[1]{(Şekil \ref{fig:#1})}
\newcommand{\tablo}[1]{(Tablo \ref{tab:#1})}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\usepackage{lmodern}
\usepackage{etoolbox}
\AtBeginEnvironment{tikzpicture}{\shorthandoff{;}}
%---------------------- Header -------------------------------%
\fancyhead[L]{R. Özgür ALTUN}
\fancyhead[R]{Tangonun Sosyal Dansçıları}
\fancyhead[C]{}
\fancyfoot[C]{\thepage}
\pagestyle{fancy}
\setlength{\headheight}{26pt}
\begin{document}
\begin{figure}[htb!]
\begin{center}
\begin{tikzpicture}[scale = 0.9]
\inputencoding{utf8}
\usetikzlibrary{babel}
\pie[sum=auto, text=legend, color={black!0, black!10, black!30, black!50, black!80}, explode=0.1, scale font, before number= {\%}]{9/Doğru veya yanliş olduğunu umursamadan keyif almak, 11/Çalişilan bir eş ile yapmak, 26/Hatali da olsa akici{\i} yapmak, 2/Keyif almak, 51/Mükemmel şekilde yapana kadar tekrar etmiş olmak}
\end{tikzpicture}
\caption{Yeni figür uygulanmasında öncelikli tercih.}
\label{fig:yenifiguroncelik}
\end{center}
\end{figure}
\end{document}
Responder1
Receio que haja pouco a fazer. O pacote pgf-pie
émuito malescrito.
Embora em um documento do usuário se possa optar por usar \i
dentro de um \foreach
ciclo, isso devenãoser infligido aos usuários de um pacote, que deve ser o mais neutro possível.
Peça aos desenvolvedores para alterarem as variáveis locais em seus \foreach
ciclos.
Enquanto isso, adicione
\let\tikzi=\i % Fix for bad programming in pgf-pie
no preâmbulo do documento, logo antes \begin{document}
, e no texto de um gráfico de pizza, use \tikzi
onde \i
deve ser usado. Nenhuma entrada UTF-8 direta, mas o comando explícito \tikzi
.
\begin{tikzpicture}[scale = 0.9]
\pie[
sum=auto,
text=legend,
color={black!0, black!10, black!30, black!50, black!80},
explode=0.1,
scale font,
before number= {\%}
]{%
9/Doğru veya yanliş olduğunu umursamadan keyif almak,
11/Çalişilan bir eş ile yapmak,
26/Hatali da olsa akici\tikzi{} yapmak,
2/Keyif almak,
51/Mükemmel şekilde yapana kadar tekrar etmiş olmak
}
\end{tikzpicture}
Responder2
Encontrei uma solução fácil na segunda hora de pesquisa. \symbol{25}
funcionou para mim.