mcand / abntex2

Automatically exported from code.google.com/p/abntex2
0 stars 0 forks source link

Classe altera posição da caption com citação #134

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Inserir uma imagem com citação/quebra de linha, exemplo:

\begin{figure}[h!]
    \begin{center}
        \resizebox{16cm}{!}{\includegraphics{importanciarelativa.pdf}}
        \caption{Importância Relativa das Dimensões de Sucesso ao longo do tempo. \newline \footnotesize Fonte: \cite{shenhar}. Tradução do autor.}
        \label{fig:importanciarelativa}
    \end{center}
\end{figure}
2. Compilar
3. Conferir posicionamento da caption

What is the expected output? What do you see instead?

Caption deveria estar centralizada. Resultado encontrado em anexo.

What version of the product are you using? On what operating system?

XeTeX 3.14159265-2.6-0.99991 (TeX Live 2014)
kpathsea version 6.2.0
Copyright 2014 SIL International, Jonathan Kew and Khaled Hosny.
There is NO warranty.  Redistribution of this software is
covered by the terms of both the XeTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the XeTeX source.
Primary author of XeTeX: Jonathan Kew.
Compiled with ICU version 53.1; using 53.1
Compiled with zlib version 1.2.8; using 1.2.8
Compiled with FreeType2 version 2.5.3; using 2.5.3
Compiled with Graphite2 version 1.2.4; using 1.2.4
Compiled with HarfBuzz version 0.9.28; using 0.9.28
Compiled with libpng version 1.6.10; using 1.6.10
Compiled with poppler version 0.25.2
Using Mac OS X Core Text and Cocoa frameworks

Additional information:

Original issue reported on code.google.com by ltc.eter...@gmail.com on 3 Dec 2014 at 1:44

Attachments:

GoogleCodeExporter commented 9 years ago
O uso do caption foi inválido. Conforme as normas ABNT, a indicação do nome 
da figura deve ser posicionada na parte superior da imagem, e a fonte, na parte 
inferior, conforme consta nos exemplos canônicos. A forma de uso apresentada 
não é prevista. Segue um exemplo válido:

\begin{figure}[htb]
\caption{\label{fig_grafico}Gráfico produzido em Excel e salvo como PDF}
\begin{center}
\includegraphics[scale=0.5]{abntex2-modelo-img-grafico.pdf}
\end{center}
\legend{Fonte: \citeonline[p. 24]{araujo2012}}
\end{figure}

Original comment by laurocesar on 3 Dec 2014 at 3:19