Skip to content

Commit 7a2a578

Browse files
author
marce
committed
feat(pypi-scout): PyPI Scout, DataOrchestrator e 10 Ecosystem Hooks v4.2.3
1 parent 563e771 commit 7a2a578

24 files changed

Lines changed: 4128 additions & 41 deletions

.evolve/docs/artigo_evolucao_standalone.tex

Lines changed: 351 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
@echo off
2+
REM ============================================================
3+
REM Converter SVGs dos fluxogramas para PDF
4+
REM Requer: Inkscape (https://inkscape.org) no PATH
5+
REM Uso: converter_svg_para_pdf.bat
6+
REM ============================================================
7+
8+
cd /d "%~dp0"
9+
10+
echo Convertendo fluxogramas SVG para PDF...
11+
echo.
12+
13+
for %%f in (fluxograma_*.svg) do (
14+
echo %%f -^> %%~nf.pdf
15+
inkscape --export-type=pdf "%%f" 2>nul
16+
if errorlevel 1 (
17+
echo ERRO: Inkscape nao encontrado. Instale: https://inkscape.org
18+
echo Alternativa: use rsvg-convert -f pdf -o "%%~nf.pdf" "%%f"
19+
)
20+
)
21+
22+
echo.
23+
echo Pronto! Recompile o artigo: pdflatex artigo_evolucao_standalone.tex
Lines changed: 117 additions & 0 deletions
Loading
Lines changed: 117 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)